Initial game launcher

This commit is contained in:
Adolfo Reyna
2026-01-30 21:39:09 -05:00
parent 2a6861fdf5
commit e3445b545d
7 changed files with 392 additions and 14 deletions

View File

@@ -1,3 +1,6 @@
#ifndef LOW_LEVEL_GUI_H
#define LOW_LEVEL_GUI_H
#include "low_level_render.h"
class LowLevelWindow
@@ -32,4 +35,6 @@ public:
void draw_circular_gauge(LowLevelWindow* window, int x, int y, int width, const char* label, int percentage);
void draw_notification(LowLevelWindow* window, int x, int y, int width, const char* time, const char* message);
void draw_large_clock(LowLevelWindow* window, int x, int y, const char* time_str);
};
};
#endif // LOW_LEVEL_GUI_H