aboutsummaryrefslogtreecommitdiffstats
path: root/engine.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-02-28 14:07:27 -0500
committerSam Anthony <sam@samanthony.xyz>2025-02-28 14:07:27 -0500
commit9008c00fdfd144363fc6b8665d1a24d53a0a5092 (patch)
tree42fabdefe2a2db4e81191b7b32f73e6001f980b0 /engine.c
parent5beba4bea306dc0bbae9d1092fa187514ca96d98 (diff)
downloadvolute-9008c00fdfd144363fc6b8665d1a24d53a0a5092.zip
init Engine struct
Diffstat (limited to 'engine.c')
-rw-r--r--engine.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/engine.c b/engine.c
new file mode 100644
index 0000000..a7fbf11
--- /dev/null
+++ b/engine.c
@@ -0,0 +1,9 @@
+#include <string.h>
+
+#include "unit.h"
+#include "engine.h"
+
+void
+init_engine(Engine *e) {
+ memset(e, 0, sizeof(*e));
+}