townengine/apps/demos/scenery/scenes/title.h

17 lines
179 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"
typedef struct SceneTitle {
Scene base;
} SceneTitle;
2024-07-08 00:44:20 +00:00
Scene *title_scene(State *state);
2024-07-08 00:44:20 +00:00
#endif