repo.or.cz
/
siwg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Tree2
[siwg.git]
/
espy
/
src
/
tree
/
CPTypes.h
blob
7ee28e144bf2bec93b18212aa156e0d2f7d0099c
1
#ifndef CPTYPES_H_
2
#define CPTYPES_H_
3
4
enum
CPColor
{
5
CP_COLOR_WHITE
,
6
CP_COLOR_BLACK
7
};
8
9
enum
CPRole
{
10
CP_ROLE_WHITE
,
11
CP_ROLE_BLACK
,
12
CP_ROLE_ANALYST
13
};
14
15
enum
CPResult
{
16
CP_RESULT_WHITE
,
17
CP_RESULT_BLACK
,
18
CP_RESULT_DRAW
19
};
20
21
#endif