From b27ad3473e6d918b7090c5d0d3cb2b4f0b582cf5 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Mon, 5 Aug 2024 13:35:59 -0700 Subject: [PATCH] wip --- src/window.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/window.rs b/src/window.rs index 1413227..88d540a 100644 --- a/src/window.rs +++ b/src/window.rs @@ -198,6 +198,8 @@ impl<'a> WindowContextSetup<'a>{ fn into_context(self,setup_context:crate::setup::SetupContext<'a>)->WindowContext<'a>{ let screen_size=glam::uvec2(setup_context.config.width,setup_context.config.height); let graphics_thread=crate::graphics_worker::new(self.graphics,setup_context.config,setup_context.surface,setup_context.device,setup_context.queue); + //this obviously doesn't belong here, do something about it pls + let bot_thread=crate::bot_worker::new(scope); WindowContext{ manual_mouse_lock:false, mouse:strafesnet_common::mouse::MouseState::default(),