updater.rs -> window.rs

This commit is contained in:
Lauri Räsänen 2023-01-24 00:58:01 +02:00
parent 320171e304
commit 03b4053203
3 changed files with 2 additions and 2 deletions

View file

@ -5,4 +5,4 @@ pub mod model;
pub mod resources;
pub mod state;
pub mod texture;
pub mod updater;
pub mod window;

View file

@ -2,5 +2,5 @@ mod core;
fn main() {
env_logger::init();
pollster::block_on(core::updater::run());
pollster::block_on(core::window::run());
}