#ifndef TOOLBOX_TUI_H #define TOOLBOX_TUI_H #include "toolbox/vec2/vec2_uint16.h" #include #include #include #ifdef TOOLBOX_TYPEDEF typedef struct window window_st; #endif struct window; __attribute__((__deprecated__("This is trash"))) struct window* win_create(void); __attribute__((__deprecated__("This is trash"))) void win_destroy(struct window **self); __attribute__((__deprecated__("This is trash"))) void tui_open(const struct window *self); __attribute__((__deprecated__("This is trash"))) void tui_close(const struct window *self); __attribute__((__deprecated__("This is trash"))) void tui_clear(const struct window *self); __attribute__((__deprecated__("This is trash"))) void tui_print_rect(const struct window *self , const struct vec2_uint16 p_cord , const struct vec2_uint16 p_size); __attribute__((__deprecated__("This is trash"))) void tui_mov_cursor(const struct window *self, const struct vec2_uint16 p_cord); #endif