📄 point.h
字号:
// point.h: interface for the point class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_POINT_H__BED7E306_1542_4E33_9152_C1361BBCC612__INCLUDED_)
#define AFX_POINT_H__BED7E306_1542_4E33_9152_C1361BBCC612__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class point
{
public:
int y;
int x;
point();
point(int vx, int vy);
virtual ~point();
bool equal(point);
point Up();
point Down();
point Left();
point Right();
};
#endif // !defined(AFX_POINT_H__BED7E306_1542_4E33_9152_C1361BBCC612__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -