diff options
author | Stephen Enders <smenders@gmail.com> | 2021-01-28 22:03:27 -0500 |
---|---|---|
committer | Stephen Enders <smenders@gmail.com> | 2021-01-28 22:03:27 -0500 |
commit | 79b14ff948efe265a1d21d0f38a6371de8068b52 (patch) | |
tree | 749c7041fd9d66e4954fe2b5df2be26ab821e46d /src/helper.hpp | |
parent | 8f02054674b582f575371702cb1ec15359b5bce5 (diff) |
Reroll on star moves
Diffstat (limited to 'src/helper.hpp')
-rw-r--r-- | src/helper.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/helper.hpp b/src/helper.hpp index 03d60fb..b56dc30 100644 --- a/src/helper.hpp +++ b/src/helper.hpp @@ -33,6 +33,7 @@ static const int NUMS_TILES[8] = { 8, 9, 10, 11, 12, 13, 14, 15 }; static const int ROLL_TILES[2] = { 20, 21 }; static const int PASS_TILES[3] = { 24, 25, 26 }; static const int START_TILES[3] = { 27, 28, 29 }; +static const int REROLL_POS[3] = { 3, 7, 13 }; static const char* TITLE = "Royal Game of Ur"; static const sf::Color GLOBAL_MASK(255, 0, 255, 255); @@ -132,6 +133,7 @@ canPlace(struct piece_t* piece, int& takenPieceId); void -clearPiece(std::shared_ptr<std::vector<struct piece_t>> pieces, struct piece_t* piece); +clearPiece(std::shared_ptr<std::vector<struct piece_t>> pieces, + struct piece_t* piece); #endif |