1
0
Fork 0
baseview/examples/x11.rs
2020-05-25 15:54:22 -04:00

11 lines
230 B
Rust

fn main() {
let window_open_options = baseview::WindowOpenOptions {
title: "baseview",
width: 512,
height: 512,
parent: baseview::Parent::None,
};
baseview::run(window_open_options);
}