#ifndef UI_H
|
|
#define UI_H
|
|
|
|
#include "tamagotchi.h"
|
|
|
|
// UI function prototypes
|
|
void init_ui(void);
|
|
void cleanup_ui(void);
|
|
void draw_tamagotchi(Tamagotchi *tama);
|
|
void draw_stats(Tamagotchi *tama);
|
|
void display_menu(void);
|
|
int get_user_input(void);
|
|
void show_game_over(void);
|
|
|
|
#endif // UI_H
|