diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-21 19:20:50 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-21 19:20:50 -0600 |
commit | 8a20d05a7a8cf9f1339142240907ed158449dfa0 (patch) | |
tree | babbf74a7bea83589b05f117a795235deb0e238c /src/root.zig | |
parent | 9f18b702b15b4a26a016170a8a2dfb216ae15810 (diff) |
add basic entity component system
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; } |