From 86e4aa6265ade205aba94494a7a31a83b5686387 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 3 Jan 2018 13:26:37 +0000 Subject: [Engine] [Example] Reenabled vsync and working on example. --- examples/shooter/bullet.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/shooter/bullet.h (limited to 'examples/shooter/bullet.h') diff --git a/examples/shooter/bullet.h b/examples/shooter/bullet.h new file mode 100644 index 00000000..37ea52ca --- /dev/null +++ b/examples/shooter/bullet.h @@ -0,0 +1,15 @@ +#ifndef EXAMPLES_SHOOTER_BULLET_H +#define EXAMPLES_SHOOTER_BULLET_H + +#include + +class Bullet { +public: + Bullet(const glm::vec4 &bound); + + void draw(yage::SpriteBatch &sp) const; +private: + glm::vec4 bound_; +}; + +#endif -- cgit