// Experimental ECS app example. Not yet ready for actual use. const mach = @import("mach"); const Renderer = @import("Renderer.zig"); const Game = @import("Game.zig"); // The list of modules to be used in our application. Our game itself is implemented in our own // module called Game. pub const modules = .{ mach.Engine, Renderer, Game, }; pub const App = mach.App;