hanafuda/title.h
2025-02-23 18:14:25 -05:00

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