context state control and wall selection

This commit is contained in:
Luka Jankovic 2025-06-24 23:07:32 +02:00
parent f768cff6d2
commit 10d243055d
6 changed files with 152 additions and 32 deletions

View file

@ -36,7 +36,11 @@ bool kubo_window_should_close(struct kubo_context *context);
void kubo_window_tick(struct kubo_context *context);
static void window_render(struct kubo_context *context);
static void window_mouse_input(struct kubo_context *context);
static void window_left_mouse(struct kubo_context *context);
static void window_right_mouse(struct kubo_context *context);
static void window_key_input(struct kubo_context *context);
static void new_wall_click(struct kubo_context *context);
static void new_wall_end(struct kubo_context *context);
#endif