?? game.h
字號:
#pragma once
#define FILE_MAX 4096
//地圖最大尺寸
#define MAP_MAX_SIZE 10
class CGame
{
public:
CGame(void);
~CGame(void);
void GameHelp();
bool InitRole(char * strFileName);
bool InitScenario(char * strFileName);
bool InitNPC(char * strFileName);
bool Init();
void Over();
void FillEquip(char * strEquip, int nLength);
void FillGoods(char * strGoods, int nLength);
void FillNPC(char * strNPC, int nLength);
void Render(char cCommand);
void GetCurStart();
void MovePos(char cDirection);
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -