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