mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
13 lines
266 B
C
13 lines
266 B
C
#include "icon_i.h"
|
|
|
|
uint8_t icon_get_width(const Icon* instance) {
|
|
return instance->width;
|
|
}
|
|
|
|
uint8_t icon_get_height(const Icon* instance) {
|
|
return instance->height;
|
|
}
|
|
|
|
const uint8_t* icon_get_data(const Icon* instance) {
|
|
return instance->frames[0];
|
|
}
|