oculus2_psprite

view 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 source
1 #ifndef PROJECTILE_H_
2 #define PROJECTILE_H_
4 #include <vmath/vmath.h>
6 int init_shots(void);
8 void shoot(vec3_t orig, vec3_t dir);
10 void update_shots(float dt);
11 void draw_shots(void);
13 #endif /* PROJECTILE_H_ */