mirror of
https://gitee.com/yanmu_ym/cpp.git
synced 2026-03-24 06:01:13 +08:00
12 lines
196 B
C++
12 lines
196 B
C++
#ifndef GAMEPREGAMEMENU_H
|
|
#define GAMEPREGAMEMENU_H
|
|
|
|
namespace Game {
|
|
namespace PreGameSetup {
|
|
void SetUpNewGame();
|
|
void ContinueOldGame();
|
|
} // namespace PreGameSetup
|
|
} // namespace Game
|
|
|
|
#endif
|