?? menu.h
字號:
#ifndef __MENUU_H__
#define __MENUU_H__
#include"Root.h"
#include"Common.h"
class CMenu:public CRoot
{
public:
CMenu();
~CMenu();
GameState Logic(bool goOn);
private:
int backColor;//背景顏色
int selectIndex;//選擇索引
WORD selectColor;
WORD unselectColor;
char menu[3][9];
void selectMenu(int index); //選項變換
void unselectMenu(int index);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -