From a8de6cb5593e3d6347393eb4c144c9cc22a470d8 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 19 May 2018 15:15:20 +0100 Subject: Moving resources and generalising examples --- examples/shooter/bullet.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 examples/shooter/bullet.h (limited to 'examples/shooter/bullet.h') diff --git a/examples/shooter/bullet.h b/examples/shooter/bullet.h deleted file mode 100644 index 19430fda..00000000 --- a/examples/shooter/bullet.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef EXAMPLES_SHOOTER_BULLET_H -#define EXAMPLES_SHOOTER_BULLET_H - -#include - -#include "direction.h" - -class Bullet : public yage::Drawable -{ -public: - Bullet(const glm::vec4 &bound, Direction dir, float speed, float depth = 0.f); - - void draw(yage::SpriteBatch &sp); - - // getters - glm::vec4 position() const; -private: - glm::vec4 bound_; - Direction dir_; - float speed_; - float depth_; -}; - -#endif -- cgit