0
mirror of https://github.com/skuep/AIOC.git synced 2025-12-24 21:46:46 +00:00
2025-09-26 17:45:17 +02:00

11 lines
327 B
C

#ifndef FOX_HUNT_H_
#define FOX_HUNT_H_
#define FOXHUNT_MAX_CHARS 16 /* Maximum amount of characters in the ID */
#define FOXHUNT_MAX_TIMINGS (FOXHUNT_MAX_CHARS * 8) /* The size of our timings array (should be good for 16 bytes of ID) */
void FoxHunt_Init(void);
void FoxHunt_Tick(void);
#endif /* FOX_HUNT_H_ */