szdytom a3d235b10b
add GameBoard
Signed-off-by: szdytom <szdytom@qq.com>
2024-02-04 21:01:06 +08:00

19 lines
237 B
C++

#ifndef OGPC_POINT_H_
#define OGPC_POINT_H_
#include "basictypes.h"
#include "astuple.h"
struct Point {
pos_t x, y;
Point(pos_t x, pos_t y);
Point();
bool operator<(const Point &o) const;
OGPC_DECLARE_ASTUPLE(x, y);
};
#endif