townengine/apps/testgame/scenes/title.h

22 lines
263 B
C
Raw Normal View History

2024-07-08 00:44:20 +00:00
#ifndef TITLE_H
#define TITLE_H
#include "../state.h"
#include "scene.h"
#include "../player.h"
#include "../world.h"
typedef struct SceneTitle {
Scene base;
2024-07-08 00:44:20 +00:00
World *world;
Player *player;
} SceneTitle;
2024-07-08 00:44:20 +00:00
Scene *title_scene(State *state);
2024-07-08 00:44:20 +00:00
#endif