const ona = @import("ona"); const std = @import("std"); pub fn main() void { ona.realtime_app .with(.initModule(ona.hid)) .with(.initModule(ona.gfx)) .with(.initSystem(.render, .of(render))) .run(); } fn render(commands: ona.gfx.Commands) void { _ = commands; }