townengine/apps/demos/scenery/state.h

21 lines
242 B
C
Raw Permalink Normal View History

2024-07-08 00:44:20 +00:00
#ifndef STATE_H
#define STATE_H
#include "twn_game_api.h"
2024-07-08 00:44:20 +00:00
#include <stdbool.h>
2024-07-08 00:44:20 +00:00
typedef struct Scene Scene;
typedef struct State {
Context *ctx;
Scene *scene;
Scene *next_scene;
2024-07-08 00:44:20 +00:00
bool is_scene_switching;
} State;
2024-07-08 00:44:20 +00:00
#endif