Cleaned up rendering module

This commit is contained in:
Lorenzo Torres 2025-08-07 03:57:53 +02:00
parent 473c4aeffb
commit b1d092b6e3
10 changed files with 21 additions and 16 deletions

View file

@ -2,8 +2,9 @@ const std = @import("std");
const Allocator = std.mem.Allocator;
const components = @import("components.zig");
const sparse = @import("sparse.zig");
const Renderer = @import("renderer");
const Camera = @import("renderer").Camera;
const rendering = @import("rendering");
const Renderer = rendering.Renderer;
const Camera = rendering.Camera;
const ecs = @import("ecs.zig");
const Input = ecs.Input;