added kubo_state_wall_new

This commit is contained in:
Luka Jankovic 2025-09-27 16:42:59 +02:00
parent fb8ff21666
commit c3973ae02b
9 changed files with 96 additions and 26 deletions

View file

@ -23,9 +23,12 @@
#include "kubo_state_data.h"
void kubo_state_normal_entered(void *context_data);
void kubo_state_normal_key(void *context_data, int key_code);
static const struct kubo_state_data kubo_state_normal_data = {
.state_entered = NULL,
.state_key = NULL
.state_entered = kubo_state_normal_entered,
.state_key = kubo_state_normal_key
};
#endif