/** * TODO file description * * Created on 2020/01/05. */ #ifndef BITMAPS_H #define BITMAPS_H #include struct BitmapImage { const char *name; uint8_t width; uint8_t height; const uint8_t* bytes; }; const struct BitmapImage *Bitmap_Get(const char *name); #endif //BITMAPS_H