add
This commit is contained in:
parent
e7342b1771
commit
5c0ad57804
|
@ -0,0 +1,3 @@
|
||||||
|
pub struct Application {
|
||||||
|
windows: Window,
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
pub mod application;
|
||||||
|
|
||||||
|
use application::Application;
|
||||||
|
|
||||||
|
pub fn run() {
|
||||||
|
let app = Application::new();
|
||||||
|
}
|
|
@ -1,3 +1,3 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
println!("Hello, world!");
|
crate::run();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue