examples/custom-renderer: cleanup docs

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-04-06 12:09:29 -07:00 committed by Stephen Gutekanst
parent af3c1e9155
commit 5659dd6266
4 changed files with 91 additions and 58 deletions

View file

@ -1,11 +1,9 @@
// 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.
// The global list of Mach modules registered for use in our application.
pub const modules = .{
mach.Engine,
Renderer,