This commit is contained in:
pointer-to-bios 2024-09-24 09:30:03 +00:00
parent e7342b1771
commit 5c0ad57804
3 changed files with 11 additions and 1 deletions

3
src/application.rs Normal file
View File

@ -0,0 +1,3 @@
pub struct Application {
windows: Window,
}

7
src/lib.rs Normal file
View File

@ -0,0 +1,7 @@
pub mod application;
use application::Application;
pub fn run() {
let app = Application::new();
}

View File

@ -1,3 +1,3 @@
fn main() {
println!("Hello, world!");
crate::run();
}