mach/examples/text/main.zig
Stephen Gutekanst 0a8e22bb49 examples: import mach-examples@20ceb359231ff284cf343dddba8cf25112ffe717
Helps hexops/mach#1165

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2024-03-06 11:08:19 -07:00

14 lines
347 B
Zig

// Experimental ECS app example. Not yet ready for actual use.
const mach = @import("mach");
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,
mach.gfx.Text,
Game,
};
pub const App = mach.App;