diff options
Diffstat (limited to 'include/ace.h')
| -rw-r--r-- | include/ace.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/ace.h b/include/ace.h new file mode 100644 index 0000000..90b1996 --- /dev/null +++ b/include/ace.h @@ -0,0 +1,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 |
