Dependencies:   4DGL-uLCD-SE PinDetect mbed

Revision:
0:5c666e5cd22d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Display/Sprite.h	Thu Mar 17 20:47:11 2016 +0000
@@ -0,0 +1,17 @@
+#ifndef SPRITE_H
+#define SPRITE_H
+
+#include "uLCD_4DGL.h"
+
+class Sprite {
+public:
+    Sprite();
+    void initSprite(int x, int y, uLCD_4DGL *uLCD); 
+
+protected:
+    int _x;
+    int _y;
+    uLCD_4DGL *_uLCDptr;
+};
+
+#endif
\ No newline at end of file