20 lines
277 B
C
20 lines
277 B
C
|
#ifndef _HF_TITLE_
|
||
|
#define _HF_TITLE_
|
||
|
|
||
|
typedef struct Title Title;
|
||
|
|
||
|
#include "game.h"
|
||
|
|
||
|
struct Title {
|
||
|
bool hover_start;
|
||
|
bool hover_options;
|
||
|
bool hover_quit;
|
||
|
bool hover_credits;
|
||
|
bool hover_rules;
|
||
|
};
|
||
|
|
||
|
void title_handle_input(Game *g);
|
||
|
void title_draw(Game *g);
|
||
|
|
||
|
#endif
|