11 lines
230 B
Rust
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);
|
|
}
|