examples: rename sysaudio example -> piano

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-04-21 16:38:15 -07:00
parent 58ffa2c870
commit 487beaabde
3 changed files with 4 additions and 13 deletions

View file

@ -1,17 +0,0 @@
const mach = @import("mach");
// The global list of Mach modules registered for use in our application.
pub const modules = .{
mach.Core,
mach.Audio,
@import("Piano.zig"),
};
// TODO(important): use standard entrypoint instead
pub fn main() !void {
// Initialize mach.Core
try mach.core.initModule();
// Main loop
while (try mach.core.tick()) {}
}