Player Library

Revision:
1:933b7aa73bbc
Parent:
0:a88279bdf8c0
Child:
4:6d5ea29f83b0
--- a/Player.h	Mon Apr 24 08:51:58 2017 +0000
+++ b/Player.h	Mon Apr 24 11:05:42 2017 +0000
@@ -9,8 +9,18 @@
 class Player
 {
     public:
+    Player();
+    ~Player();
+    void init(int x, int y);
+    void draw(N5110 &lcd);
+    void update(Direction d,float mag);
+    
     
     private:
-    
+
+    int _x;
+    int _y;
+    int _speed;
+
 };
 #endif
\ No newline at end of file