townengine/apps/testgame/scenes/title.h

22 lines
280 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"
struct scene_title {
struct scene base;
struct world *world;
struct player *player;
};
struct scene *title_scene(struct state *state);
#endif