1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 20:49:49 +04:00
Files

13 lines
196 B
C
Raw Permalink Normal View History

#pragma once
#include <stdint.h>
class TextStore {
public:
TextStore(uint8_t text_size);
~TextStore();
void set(const char* text...);
const uint8_t text_size;
char* text;
};