15 lines
240 B
Rust
Raw Normal View History

2025-01-23 05:39:23 -08:00
mod app;
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
}