kimodem/include/Mode.h

11 lines
141 B
C
Raw Normal View History

2023-10-07 23:25:17 +00:00
#ifndef KIMODEM_MODE_H
#define KIMODEM_MODE_H
static struct Mode {
bool (*Process)();
bool (*Update)();
} *currentMode(nullptr);
#endif