aboutsummaryrefslogtreecommitdiff
path: root/src/root.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.zig')
-rw-r--r--src/root.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig
index 330b6ba..60a4df4 100644
--- a/src/root.zig
+++ b/src/root.zig
@@ -3,8 +3,10 @@ const testing = std.testing;
const component = @import("ecs/component.zig");
const ecs = @import("ecs/ecs.zig");
+const run = @import("run.zig");
test {
_ = component;
_ = ecs;
+ _ = run;
}