diff --git a/examples/core-custom-entrypoint/App.zig b/examples/core-custom-entrypoint/App.zig index 75a970055b..4b0b6c18a0 100644 --- a/examples/core-custom-entrypoint/App.zig +++ b/examples/core-custom-entrypoint/App.zig @@ -7,6 +7,12 @@ pub const mach_module = .app; pub const mach_systems = .{ .main, .init, .deinit, .tick }; +// define Modules +pub const Modules = mach.Modules(.{ + mach.Core, + @import("App.zig"), +}); + window: mach.ObjectID, title_timer: mach.time.Timer, pipeline: *gpu.RenderPipeline,