diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-22 14:22:12 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-22 14:22:12 -0600 |
commit | 14c2530817f20986b51f611ef637d09f43aac23c (patch) | |
tree | cc948750173fd7c0aba570f462b65ad1fe405121 /src/root.zig | |
parent | 8ecefa4b3fd56fc87f822f3dbefa1ce1ef6601d8 (diff) |
fix memory leak and implement stub front end
Diffstat (limited to 'src/root.zig')
-rw-r--r-- | src/root.zig | 2 |
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; } |