Character Animation and Movement controller

Revision:
0:8fa72895d335
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CaMove.h	Wed Apr 17 05:10:11 2019 +0000
@@ -0,0 +1,28 @@
+#ifndef CAMOVE_H
+#define CAMOVE_H
+
+#include "mbed.h"
+#include "N5110.h"
+
+class N5110;
+
+class CaMove {
+    
+    public:
+    void CMinit();
+    void CMmove(N5110 &lcd);
+    int get_x();
+    int get_y();
+    short int get_itr();
+    short int get_mvp();
+    
+    
+    private:
+    short int mvp;
+    int _h;
+    int _v;
+    short int _itr;
+    
+};
+
+#endif