diff options
Diffstat (limited to 'src/root.zig')
-rw-r--r-- | src/root.zig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/root.zig b/src/root.zig index 62b3398..330b6ba 100644 --- a/src/root.zig +++ b/src/root.zig @@ -1,8 +1,10 @@ const std = @import("std"); const testing = std.testing; -const entity = @import("ecs/entity.zig"); +const component = @import("ecs/component.zig"); +const ecs = @import("ecs/ecs.zig"); test { - _ = entity; + _ = component; + _ = ecs; } |