Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 18, 2017 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/99ffc21b1f40b1c4ad4d7e4f9edd9b48 to your computer and use it in GitHub Desktop.
Save deque-blog/99ffc21b1f40b1c4ad4d7e4f9edd9b48 to your computer and use it in GitHub Desktop.
using PlayerName = std::string;
using Coordinate = std::tuple<double, double, double>;
struct Game
{
int m_current_round;
std::map<PlayerName, Coordinate> m_players_location;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment