2025-05-12 00:21:52 +01:00
|
|
|
const ona = @import("ona");
|
|
|
|
|
|
|
|
const std = @import("std");
|
|
|
|
|
|
|
|
pub fn main() void {
|
|
|
|
ona.realtime_app
|
2025-08-05 18:07:09 +01:00
|
|
|
.with(.initModule(ona.hid))
|
2025-05-12 00:21:52 +01:00
|
|
|
.with(.initModule(ona.gfx))
|
2025-08-08 13:52:45 +01:00
|
|
|
.with(.initSystem(.render, .of(render)))
|
2025-05-12 00:21:52 +01:00
|
|
|
.run();
|
|
|
|
}
|
2025-08-08 13:52:45 +01:00
|
|
|
|
|
|
|
fn render(commands: ona.gfx.Commands) void {
|
|
|
|
_ = commands;
|
|
|
|
}
|