12 lines
246 B
C
12 lines
246 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
typedef struct {
|
||
|
uint32_t id;
|
||
|
const void (*on_enter)(void* context);
|
||
|
const bool (*on_event)(void* context, uint32_t event);
|
||
|
const void (*on_exit)(void* context);
|
||
|
} AppScene;
|