We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b279167 commit 34be2e4Copy full SHA for 34be2e4
1 file changed
examples/core-custom-entrypoint/App.zig
@@ -3,6 +3,12 @@ const gpu = mach.gpu;
3
4
const App = @This();
5
6
+// The set of Mach modules our application may use.
7
+pub const Modules = mach.Modules(.{
8
+ mach.Core,
9
+ App,
10
+});
11
+
12
pub const mach_module = .app;
13
14
pub const mach_systems = .{ .main, .init, .deinit, .tick };
0 commit comments