summaryrefslogtreecommitdiff
path: root/src/rendering
diff options
context:
space:
mode:
authorLorenzo Torres <torres@sideros.org>2025-03-23 19:38:34 +0100
committerLorenzo Torres <torres@sideros.org>2025-03-23 19:38:34 +0100
commit1d720c790deca41bea2a98a8f42d68adcc622c52 (patch)
tree8e3fa7ca5d529fa148f59ff117e6766c32fbe203 /src/rendering
parent874134f3ff726d969fd901fee18c1aceb415c03b (diff)
make the ecs subsystem be a separate module
Diffstat (limited to 'src/rendering')
-rw-r--r--src/rendering/gltf.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rendering/gltf.zig b/src/rendering/gltf.zig
new file mode 100644
index 0000000..2abeec1
--- /dev/null
+++ b/src/rendering/gltf.zig
@@ -0,0 +1,3 @@
+const std = @import("std");
+const mesh = @import("mesh.zig");
+const Allocator = std.mem.Allocator;