#ifndef SPRITE_H #define SPRITE_H #include struct Sprite { uint16_t width, height; const char* data; }; #endif