a7283280ef
* GUI: Icons and IconsAnimation refactoring. Switch assets to new Icon API. * Gui: icon and animation draw now do not accept null pointer * Format Sources * Fix no debug build * Furi: stricter checks in memmgr
10 lines
176 B
C
10 lines
176 B
C
#include "icon.h"
|
|
|
|
struct Icon {
|
|
const uint8_t width;
|
|
const uint8_t height;
|
|
const uint8_t frame_count;
|
|
const uint8_t frame_rate;
|
|
const uint8_t** frames;
|
|
};
|