1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef ACE_H #define ACE_H #include <stdbool.h> typedef struct ace_ballistics ace_ballistics; typedef struct { ace_ballistics *ballistics; } ace_config; extern ace_config *ace; struct ace_ballistics { bool enabled; }; #endif