summaryrefslogtreecommitdiff
path: root/MouseSpr.i
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 19:26:13 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 19:26:13 +0200
commitf0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 (patch)
tree91b7404dca0b6eb136cb7f9b144435419144b777 /MouseSpr.i
parentd85464781580796bbcc744ae732e56d1920e3b0f (diff)
downloadpocketempires-f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555.tar.gz
Game has been restructured in favor of OOP
Diffstat (limited to 'MouseSpr.i')
-rw-r--r--MouseSpr.i25
1 files changed, 14 insertions, 11 deletions
diff --git a/MouseSpr.i b/MouseSpr.i
index a4c7e8b..91bc2ef 100644
--- a/MouseSpr.i
+++ b/MouseSpr.i
@@ -1,18 +1,21 @@
#ifndef MOUSE_SPR_I__
#define MOUSE_SPR_I__
+#include <stdint.h>
+#include <avr/pgmspace.h>
+#include <Arduino.h>
+
const uint8_t PROGMEM MouseSprData[] =
{
- 8,8, //width and height
- B11111100,
- B10000100,
- B10001000,
- B10000100,
- B10100010,
- B11010001,
- B00001010,
- B00000100,
-
+ 8,8, //width and height
+ B11111100,
+ B10000100,
+ B10001000,
+ B10000100,
+ B10100010,
+ B11010001,
+ B00001010,
+ B00000100
};
-#endif // MOUSE_SPR_I__
+#endif /* MOUSE_SPR_I__ */