context normal state and camera input

This commit is contained in:
Luka Jankovic 2025-09-06 18:00:34 +02:00
parent 7e065745d2
commit 737ba58860
3 changed files with 38 additions and 42 deletions

View file

@ -17,10 +17,3 @@
*/
#include "kubo_state_normal.h"
#include "../kubo_context.h"
void kubo_state_normal_entered(void *context_data) {
struct kubo_context *context = (struct kubo_context *)context_data;
(void)context;
printf("hello from state normal\n");
}

View file

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