Game of Ur 0.3.3
This is a computer adaptation of Game of Ur, written in C++ mainly using SDL and OpenGL.
Loading...
Searching...
No Matches
piece_type_id.hpp
Go to the documentation of this file.
1
11
12#ifndef ZOAPPGAMEPIECETYPEID_H
13#define ZOAPPGAMEPIECETYPEID_H
14
15#include <cstdint>
16
22enum PieceTypeID: uint8_t {
23 SWALLOW=0,
24 STORMBIRD,
25 RAVEN,
26 ROOSTER,
27 EAGLE,
28 TOTAL=5
29};
30
31#endif
PieceTypeID
Enum listing the different types of pieces present in the game.
Definition piece_type_id.hpp:22