14 lines
254 B
C++
14 lines
254 B
C++
#ifndef SPACE_POSITION_H
|
|
#define SPACE_POSITION_H
|
|
|
|
#include<mingl/mingl.h>
|
|
|
|
class position : public nsGraphics::Vec2D {
|
|
public:
|
|
position() = default;
|
|
position(int x, int y);
|
|
bool isColliding(position& p, int rx, int ry);
|
|
};
|
|
|
|
#endif //SPACE_POSITION_H
|