forked from SharifAIChallenge/AIC17-Client-Cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypes.h
More file actions
66 lines (52 loc) · 640 Bytes
/
Copy pathTypes.h
File metadata and controls
66 lines (52 loc) · 640 Bytes
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#ifndef AIC_TYPES
#define AIC_TYPES
#include <iostream>
extern int globalTurn;
class Entity;
typedef std::pair<int, Entity*> PIE;
//enum class Antenna
//{
// SINGLE = 0,
// DOUBLE
//};
enum class BeetleType
{
LOW = 0,
HGIGH
};
//enum class BeetleColor
//{
// BRIGHT = 0,
// BROWN
//};
enum class Direction
{
RIGHT = 0,
UP,
LEFT,
DOWN
};
enum class Move
{
RIGHT = 0,
FORWARD,
LEFT
};
enum class EntityType
{
BEETLE = 0,
FOOD,
TRASH,
SLIPPERS,
TELEPORT
};
enum class CellState {
ALLY = 0,
ENEMY,
BLANK
};
struct Size
{
int width, height;
};
#endif /* AIC_TYPES */