This commit is contained in:
lecointre
2025-11-30 15:13:09 +01:00
parent c3f8f064ec
commit 7da24e557e
14 changed files with 9 additions and 897 deletions
-28
View File
@@ -1,28 +0,0 @@
#ifndef MENU_VIEW_H
#define MENU_VIEW_H
struct MenuState {
int selected_image;
int rows;
int cols;
int ready;
};
void render_menu(const struct MenuState* menu);
void menu_handle_mouse(struct MenuState* menu, int x, int y);
void menu_handle_key(struct MenuState* menu, int key);
#endif