examples: update hardware-check example to use new object system

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-12-27 17:39:30 -07:00
parent f352670464
commit d62650276f
3 changed files with 230 additions and 216 deletions

View file

@ -4,8 +4,8 @@ const mach = @import("mach");
// The set of Mach modules our application may use.
const Modules = mach.Modules(.{
mach.Core,
mach.gfx.sprite_modules,
mach.gfx.text_modules,
mach.gfx.Sprite,
mach.gfx.Text,
mach.Audio,
@import("App.zig"),
});