2024-12-01 16:48:51 -06:00

18 lines
197 B
C

#pragma once
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
struct runner_state {
int tick;
};
bool runner_tick(struct runner_state * runner_state);
#ifdef __cplusplus
}
#endif