New feature:
- Basic C compiler
This commit is contained in:
Chris
2026-02-06 01:42:27 +01:00
parent 3ba7d2da48
commit afc85e8964
20 changed files with 1519 additions and 12 deletions

View File

@@ -52,6 +52,9 @@ void wm_refresh(void);
void wm_paint(void);
void wm_timer_tick(void);
// Hook for external rendering (e.g. VM overlay)
extern void (*wm_custom_paint_hook)(void);
// Drawing helpers
void draw_bevel_rect(int x, int y, int w, int h, bool sunken);
void draw_button(int x, int y, int w, int h, const char *text, bool pressed);