diff options
Diffstat (limited to 'src/inc/gui.h')
-rw-r--r-- | src/inc/gui.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/inc/gui.h b/src/inc/gui.h deleted file mode 100644 index 760bcb9..0000000 --- a/src/inc/gui.h +++ /dev/null @@ -1,22 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner -// Some GUI functions - -#ifndef GUI_H -#define GUI_H - -#include <def.h> - -// Generalized font struct -struct font { - char *chars; - int height; - int width; - int char_size; -}; - -void gui_write(int x, int y, const u32 c[3], char *text); -void gui_term_write_char(char ch); -void gui_term_write(char *text); -void gui_init(char *font_path); - -#endif |