* wifi wip * renamed project to Tactility * renamed code files and defines * changed prefixes to tt_ * removed wifi wip code
12 lines
192 B
C
12 lines
192 B
C
#pragma once
|
|
|
|
#include <stdio.h>
|
|
|
|
struct Icon {
|
|
const uint8_t width;
|
|
const uint8_t height;
|
|
const uint8_t frame_count;
|
|
const uint8_t frame_rate;
|
|
const uint8_t* const* frames;
|
|
};
|