coeng

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/co_collider.h	Sat Feb 14 10:08:00 2015 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef CO_COLLIDER_H_
     1.5 +#define CO_COLLIDER_H_
     1.6 +
     1.7 +#include "comp.h"
     1.8 +#include "geom.h"
     1.9 +
    1.10 +class CoCollider {
    1.11 +public:
    1.12 +	GeomShape *shape;
    1.13 +};
    1.14 +
    1.15 +#endif	// CO_COLLIDER_H_