mach/examples/glyphs/main.zig
Stephen Gutekanst b90b70084e examples: glyphs: improve code structure / naming / init logic
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2024-04-16 10:40:36 -07:00

16 lines
444 B
Zig

// TODO(important): review all code in this file in-depth
// Experimental ECS app example. Not yet ready for actual use.
const mach = @import("mach");
// 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,
mach.gfx.Sprite,
mach.gfx.SpritePipeline,
@import("Glyphs.zig"),
@import("Game.zig"),
};
pub const App = mach.App;