kimodem/include/Mode.h

11 lines
141 B
C

#ifndef KIMODEM_MODE_H
#define KIMODEM_MODE_H
static struct Mode {
bool (*Process)();
bool (*Update)();
} *currentMode(nullptr);
#endif