2025-02-23 18:07:57 -05:00
|
|
|
#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;
|
2025-02-23 18:35:11 -05:00
|
|
|
Texture2D rules_qr;
|
2025-02-23 18:07:57 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
void title_handle_input(Game *g);
|
|
|
|
void title_draw(Game *g);
|
2025-02-23 18:35:11 -05:00
|
|
|
void initialize_title(Game *g);
|
2025-02-23 21:26:22 -05:00
|
|
|
void run_frame_title(Game *g);
|
2025-02-23 18:07:57 -05:00
|
|
|
|
|
|
|
#endif
|