This commit is contained in:
2025-10-02 18:53:47 -05:00
parent 4b04fc65ad
commit c0cd4ead04
34 changed files with 684 additions and 35 deletions

View File

@@ -10,8 +10,11 @@
#include "error/error.h"
#define SCENE_FLAG_ACTIVE (1 << 0)
#define SCENE_FLAG_INITIALIZED (1 << 1)
typedef struct {
const char_t *name;
errorret_t (*init)(void);
void (*update)(void);
void (*render)(void);