oculus2_psprite

diff src/projectile.h @ 21:dc7af0f549b2

VR point sprite shooting test
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 22 Jan 2015 06:19:52 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/projectile.h	Thu Jan 22 06:19:52 2015 +0200
     1.3 @@ -0,0 +1,13 @@
     1.4 +#ifndef PROJECTILE_H_
     1.5 +#define PROJECTILE_H_
     1.6 +
     1.7 +#include <vmath/vmath.h>
     1.8 +
     1.9 +int init_shots(void);
    1.10 +
    1.11 +void shoot(vec3_t orig, vec3_t dir);
    1.12 +
    1.13 +void update_shots(float dt);
    1.14 +void draw_shots(void);
    1.15 +
    1.16 +#endif	/* PROJECTILE_H_ */