Steven Mahasin / Mbed 2 deprecated DreamDungeon

Dependencies:   mbed MotionSensor

Revision:
10:1a3499f6b583
Child:
11:63e54f6e7939
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Entity/Player/Player.h	Sun Apr 21 23:23:35 2019 +0000
@@ -0,0 +1,16 @@
+#ifndef PLAYER_H
+#define PLAYER_H
+#include "Entity.h"
+
+class Player : public Entity {
+    public:
+    // Constructors
+    Player(float, float);
+    
+    // Functions
+    virtual void move(float, float);
+    virtual void chkdmg();
+    void buttons(bool, bool, bool, bool);
+};
+
+#endif
\ No newline at end of file