diff --git a/src/main.rs b/src/main.rs index 176f088..2951cd2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,6 @@ mod bvh; mod aabb; +mod luau; mod model; mod setup; mod window; @@ -117,5 +118,7 @@ pub fn default_models()->model::IndexedModelInstances{ } fn main(){ + luau::new_state().expect("Failed to load strafe lua"); + setup::setup_and_start(format!("Strafe Client v{}",env!("CARGO_PKG_VERSION"))); }