summaryrefslogtreecommitdiffstats
path: root/include/ace.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/ace.h17
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