14 lines
157 B
C++
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();
|
||
|
}
|