From 8a20d05a7a8cf9f1339142240907ed158449dfa0 Mon Sep 17 00:00:00 2001 From: jjanzen Date: Tue, 21 Jan 2025 19:20:50 -0600 Subject: add basic entity component system --- src/root.zig | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/root.zig') 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; } -- cgit v1.2.3