From 879c2c04d9c3879f871cfe79f9b25fd23c5184b4 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Thu, 11 Jun 2015 11:38:49 -0400 Subject: Wrote EntityManager --- src/components/user_movement.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/components/user_movement.h (limited to 'src/components/user_movement.h') diff --git a/src/components/user_movement.h b/src/components/user_movement.h deleted file mode 100644 index 1bcf05e..0000000 --- a/src/components/user_movement.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef USER_MOVEMENT_H -#define USER_MOVEMENT_H - -#include "entity.h" - -class Game; - -class UserMovementComponent : public Component { - public: - void input(Game& game, Entity& entity, int key, int action); - void receive(Game&, Entity&, const Message& msg); - - private: - bool holdingLeft = false; - bool holdingRight = false; - bool frozen = false; -}; - -#endif -- cgit 1.4.1