📄 location.h
字号:
//Location.h
#if !defined(_LOCATION_H)
#define _LOCATION_H
class Location
{
public:
Location();
Location(int xx,int yy);
~Location();
void Move(int x,int y);
int GetX() {return X;}
int GetY() {return Y;}
private:
int X,Y;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -