14 lines
231 B
Rust
Raw Normal View History

mod file;
mod setup;
mod window;
2023-10-04 15:58:02 -07:00
mod worker;
mod compat_worker;
mod physics_worker;
mod graphics_worker;
2025-01-05 21:39:48 -08:00
const TITLE:&'static str=concat!("Strafe Client v",env!("CARGO_PKG_VERSION"));
fn main(){
2025-01-05 21:39:48 -08:00
setup::setup_and_start(TITLE);
2023-08-29 18:20:58 -07:00
}