blob: 1303628777e14c214179f28a018a8fd554f7d243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SHAPECOLLIDER_H
#define SHAPECOLLIDER_H
struct CollisionShape{
};
class BoundingShape
{
public:
BoundingShape();
//virtual CollisionShape getCollisionShape() = 0;
};
#endif // SHAPECOLLIDER_H
|