From 99b9c527b4c3d09298be58b9fa8d1d67267e342d Mon Sep 17 00:00:00 2001 From: unittensor Date: Sat, 20 Jan 2024 20:19:10 -0500 Subject: [PATCH] add luau module to main WIP implementation method --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) 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"))); }