1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-02 14:06:29 -05:00
hUI/hui-examples/examples/test_hui_euc.rs
2025-03-31 18:24:25 +02:00

17 lines
326 B
Rust

use minifb::{Window, WindowOptions};
pub fn main() {
let mut window = Window::new(
"hUI minfb (hui-euc)",
800, 600,
WindowOptions::default()
).unwrap();
window.set_target_fps(60);
// while window.is_open() {
// window
// .update_with_buffer(&buffer, WIDTH, HEIGHT)
// .unwrap();
// }
}