1
0
Fork 0
baseview/examples/open_window.rs

11 lines
239 B
Rust
Raw Normal View History

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