1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef INCLUDEHOTSEATGAMEGAMEPROPERTIES_H
- #define INCLUDEHOTSEATGAMEGAMEPROPERTIES_H
- struct GameProperties
- {
- public:
-
- static constexpr unsigned RACES_MAXNUM = 2;
-
- static constexpr unsigned AVAILABLE_UNIT_MAXNUM = 5;
-
- static constexpr unsigned MAX_PARTY_SIZE = 7;
-
- static const unsigned PLAYERS_NUMBER = 2;
-
- static unsigned FIELD_ROWS_NUMBER;
-
- static unsigned FIELD_COLUMNS_NUMBER;
-
- static double CELL_MIN_RADIUS;
-
- static double CELL_MAX_RADIUS;
- };
- #endif
|