-
Notifications
You must be signed in to change notification settings - Fork 2
/
Drawing.h
executable file
·49 lines (45 loc) · 960 Bytes
/
Drawing.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
44
45
46
47
48
49
#ifndef Drawing
#define Drawing
class Upgrade
{
public:
int state, x, y;
void Draw_Coffee(void);
void Draw_CNC(void);
void Draw_Clone(void);
void Draw_Print(void);
void Draw_Chem(void);
void Draw_Server(void);
};
class Person
{
public:
int state_person, state_walking, r_skin, g_skin, b_skin, r_hair, g_hair, b_hair, r_shirt, g_shirt, b_shirt, r_pants, g_pants, b_pants, r_shoes, g_shoes, b_shoes, r_eyes, g_eyes, b_eyes;
double x, y;
void Draw_up_still(void);
void Draw_up_walk_left(void);
void Draw_up_walk_right(void);
void Draw_down_still(void);
void Draw_down_left(void);
void Draw_down_right(void);
void Draw_left_still(void);
void Draw_left_left(void);
void Draw_left_right(void);
void Draw_right_still(void);
void Draw_right_left(void);
void Draw_right_right(void);
void Draw(void);
};
class Desk
{
public:
int state, x, y;
void Draw(void);
};
class Computer
{
public:
int state, x, y;
void Draw(void);
};
#endif