board.cpp
来自「使用面向对象方法作的棋牌类游戏」· C++ 代码 · 共 26 行
CPP
26 行
// definition of members method of all the classes
#pragma hrdstop
#include <condefs.h>
#include <iostream.h>
#include <conio.h>
#include "board.h"
USEUNIT("game.cpp");
USEFILE("board.h");
//---------------------------------------------------------------------------
void main(void)
{
Game game;
game.play();
getch();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?