townengine/apps/testgame/scenes/title.h

22 lines
263 B
C

#ifndef TITLE_H
#define TITLE_H
#include "../state.h"
#include "scene.h"
#include "../player.h"
#include "../world.h"
typedef struct SceneTitle {
Scene base;
World *world;
Player *player;
} SceneTitle;
Scene *title_scene(State *state);
#endif