Give the option to add new players, start the game and procede to the next turn using text input.
This commit is contained in:
parent
921c937439
commit
a2ddbcbeeb
6 changed files with 68 additions and 36 deletions
|
@ -597,4 +597,9 @@ bool inside_target(const SDL_Rect *target, const SDL_Point *position)
|
|||
{
|
||||
return target->x < position->x && target->x + target->w > position->x && target->y < position->y &&
|
||||
target->y + target->h > position->y;
|
||||
}
|
||||
|
||||
bool HexagonGrid::place(Player *player)
|
||||
{
|
||||
return true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue