text_store.h 196 B

123456789101112
  1. #pragma once
  2. #include <stdint.h>
  3. class TextStore {
  4. public:
  5. TextStore(uint8_t text_size);
  6. ~TextStore();
  7. void set(const char* text...);
  8. const uint8_t text_size;
  9. char* text;
  10. };