make the ecs subsystem be a separate module

This commit is contained in:
Lorenzo Torres 2025-03-23 19:38:34 +01:00
parent 874134f3ff
commit 1d720c790d
4 changed files with 40 additions and 27 deletions

3
src/rendering/gltf.zig Normal file
View file

@ -0,0 +1,3 @@
const std = @import("std");
const mesh = @import("mesh.zig");
const Allocator = std.mem.Allocator;