KoiKoi/engine/Game.cpp
2022-01-15 16:45:52 +01:00

14 lines
157 B
C++

#include "Game.hpp"
Game::Game() :
board(this)
{
}
void Game::Setup()
{
// Put 8 cards on the table
for (int i = 0; i < 8; i++)
board.RevealCard();
}