Give the option to add new players, start the game and procede to the next turn using text input.

This commit is contained in:
Tim Schubert 2016-01-28 19:41:28 +01:00
parent 921c937439
commit a2ddbcbeeb
6 changed files with 68 additions and 36 deletions

View file

@ -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;
}