#ifndef ACE_H #define ACE_H #include typedef struct ace_ballistics ace_ballistics; typedef struct { ace_ballistics *ballistics; } ace_config; extern ace_config *ace; struct ace_ballistics { bool enabled; }; #endif