mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-02-03 09:33:16 +08:00
16 lines
305 B
C++
16 lines
305 B
C++
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
namespace Game {
|
|
struct GameBoard;
|
|
|
|
enum class PlayGameFlag { BrandNewGame, ContinuePreviousGame };
|
|
void playGame(PlayGameFlag cont, GameBoard gb,
|
|
unsigned long long userInput_PlaySize = 1);
|
|
|
|
void startGame();
|
|
void continueGame();
|
|
}; // namespace Game
|
|
|
|
#endif
|