diff options
| author | tslil <tslil@posteo.de> | 2020-12-28 20:56:46 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | fd22e4cf3198c1e63cf26dd5fdce588a1e969ac1 (patch) | |
| tree | 363215345250b1f0aa223ce97671589fa2837a0f /include/enums.h | |
| parent | f706a6a0546400cb6a1925f25dc010ffce2afd49 (diff) | |
Started on PTN stuff
Diffstat (limited to 'include/enums.h')
| -rw-r--r-- | include/enums.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/enums.h b/include/enums.h new file mode 100644 index 0000000..1df2a4b --- /dev/null +++ b/include/enums.h @@ -0,0 +1,5 @@ +enum COLOUR { C_WHITE, C_BLACK }; +enum STONE_VARIANT { STONE_FLAT, STONE_STANDING, STONE_CAPSTONE }; +enum MOVE_DIRECTION { M_UP, M_DOWN, M_LEFT, M_RIGHT }; +enum ACTION_RESULT { A_OK, A_ILLEGAL, A_OVERFLOW }; +enum WIN_RESULT { W_NONE, W_ROAD_WHITE, W_ROAD_BLACK, W_FLAT_WHITE, W_FLAT_BLACK }; |
