diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 19:26:13 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2018-07-09 19:26:13 +0200 |
| commit | f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555 (patch) | |
| tree | 91b7404dca0b6eb136cb7f9b144435419144b777 /MouseSpr.i | |
| parent | d85464781580796bbcc744ae732e56d1920e3b0f (diff) | |
| download | pocketempires-f0b654b9bf3bc2a93c1f89d4cc3edcf77b948555.tar.gz | |
Game has been restructured in favor of OOP
Diffstat (limited to 'MouseSpr.i')
| -rw-r--r-- | MouseSpr.i | 25 |
1 files changed, 14 insertions, 11 deletions
@@ -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__ */ |
