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

@ -21,6 +21,7 @@
#include "kubo_state_command.h"
#include "kubo_state_normal.h"
#include "kubo_state_wall_new.h"
#include "kubo_state_wall_select.h"
enum kubo_context_state {
@ -38,7 +39,7 @@ struct kubo_state_list_entry {
static const struct kubo_state_list_entry kubo_state_data[] = {
{ KUBO_CONTEXT_NORMAL, kubo_state_normal_data },
{ KUBO_CONTEXT_COMMAND, kubo_state_command_data },
{ KUBO_CONTEXT_WALL_NEW, kubo_state_wall_select_data },
{ KUBO_CONTEXT_WALL_NEW, kubo_state_wall_new_data },
{ KUBO_CONTEXT_WALL_SELECT, kubo_state_wall_select_data }
};