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
role_id.hpp
Go to the documentation of this file.
1
11
12#ifndef ZOAPPPLAYERROLEID_H
13#define ZOAPPPLAYERROLEID_H
14
20enum RoleID {
21 NA, //< Role assignment hasn't been done yet, or the data containing this represents some object considered "empty."
22 BLACK, //< The role (and the corresponding set of pieces) whose player goes first in the play phase of the game.
23 WHITE, //< The role (and the corresponding set of pieces) whose player goes second in the play phase of the game.
24};
25
26#endif
RoleID
A value representing the various roles (or sets, if preferred) possible in this game.
Definition role_id.hpp:20