12 lines
216 B
C++
12 lines
216 B
C++
#ifndef SPACE_POSITION_H
|
|
#define SPACE_POSITION_H
|
|
|
|
#include<mingl/mingl.h>
|
|
|
|
class position : public nsGraphics::Vec2D {
|
|
public:
|
|
bool isColliding(position& p, unsigned rx, unsigned ry);
|
|
};
|
|
|
|
#endif //SPACE_POSITION_H
|