mirror of https://github.com/MLXXXp/Arduboy2.git
14 lines
200 B
C
14 lines
200 B
C
|
#ifndef ASTEROID_BITMAPS_H
|
||
|
#define ASTEROID_BITMAPS_H
|
||
|
|
||
|
#include <avr/pgmspace.h>
|
||
|
|
||
|
extern const unsigned char fire[];
|
||
|
extern const unsigned char title[];
|
||
|
extern const unsigned char arrow[];
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|