summaryrefslogtreecommitdiffstats
path: root/include/ace.h
diff options
context:
space:
mode:
authorhybrid <hybrid@hybridlabs.pro>2026-07-11 10:15:52 +0300
committerhybrid <hybrid@hybridlabs.pro>2026-07-11 10:15:52 +0300
commit866393b70f5baddcaf9571b7240ebd4ce44bc67c (patch)
treecac69c96fc074c64af54060a044474e40e7e46ad /include/ace.h
parent4e6026b12eb00ea5bdd6dece2dfc97ffe8c2fc87 (diff)
downloada3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.tar.gz
a3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.tar.bz2
a3catragmx-866393b70f5baddcaf9571b7240ebd4ce44bc67c.zip
add: tmp commit
Diffstat (limited to 'include/ace.h')
-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