-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui.h
43 lines (40 loc) · 1.03 KB
/
ui.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef __UI_H__
#define __UI_H__
#include "tamagotchi.h"
class UI
{
private:
Tamagotchi tamagotchi;
enum option
{
INTRODUCTION = 1,
FEED,
SLEEP,
MUSIC,
STUDY,
EXIT
};
static const string baby_tamagotchi;
static const string baby_tamagotchi_sleeping;
static const string baby_tamagotchi_listening_to_music1;
static const string baby_tamagotchi_listening_to_music2;
static const string child_tamagotchi;
static const string child_tamagotchi_sleeping;
static const string child_tamagotchi_listening_to_music1;
static const string child_tamagotchi_listening_to_music2;
static const string teen_tamagotchi;
static const string teen_tamagotchi_sleeping;
static const string teen_tamagotchi_listening_to_music1;
static const string teen_tamagotchi_listening_to_music2;
public:
UI(){};
void drawTamagotchi();
void setTamagotchi();
void showMainView();
void introduce();
int feedTamagotchi();
int makeTamagotchiGoToBed();
int makeTamagotchiEnjoyMusic();
int playStudyingGame();
};
#endif