coeng

view src/co_collider.h @ 7:af24cfbdf9b6

adding collision detection
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Feb 2015 10:08:00 +0200
parents
children 8cce82794f90
line source
1 #ifndef CO_COLLIDER_H_
2 #define CO_COLLIDER_H_
4 #include "comp.h"
5 #include "geom.h"
7 class CoCollider {
8 public:
9 GeomShape *shape;
10 };
12 #endif // CO_COLLIDER_H_