Skip to content

Commit 0fbd6d2

Browse files
committed
feat(overlay): removed Valthrun Web Radar implementation as the standalone version is favoured
1 parent beac442 commit 0fbd6d2

File tree

6 files changed

+3
-305
lines changed

6 files changed

+3
-305
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controller/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ cs2-schema-generated = { path = "../cs2-schema/generated" }
2323
cs2-schema-cutl = { path = "../cs2-schema/cutl" }
2424
overlay = { path = "../overlay" }
2525
utils-state = { path = "../utils/state" }
26-
radar-client = { path = "../radar/client" }
2726

2827
imgui = { version = "0.12", features = ["tables-api"] }
2928
clap = { version = "4.3.19", features = ["derive"] }

controller/src/main.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ use std::{
1414
Ordering,
1515
},
1616
Arc,
17-
Mutex,
1817
},
1918
time::{
2019
Duration,
@@ -53,7 +52,6 @@ use overlay::{
5352
UnicodeTextRenderer,
5453
VulkanError,
5554
};
56-
use radar::WebRadar;
5755
use settings::{
5856
load_app_settings,
5957
AppSettings,
@@ -81,7 +79,6 @@ use crate::{
8179

8280
mod dialog;
8381
mod enhancements;
84-
mod radar;
8582
mod settings;
8683
mod utils;
8784
mod view;
@@ -158,8 +155,6 @@ pub struct Application {
158155
pub settings_ui: RefCell<SettingsUI>,
159156
pub settings_screen_capture_changed: AtomicBool,
160157
pub settings_render_debug_window_changed: AtomicBool,
161-
162-
pub web_radar: RefCell<Option<Arc<Mutex<WebRadar>>>>,
163158
}
164159

165160
impl Application {
@@ -550,7 +545,6 @@ fn real_main(args: &AppArgs) -> anyhow::Result<()> {
550545
app_state,
551546

552547
cs2: cs2.clone(),
553-
web_radar: Default::default(),
554548

555549
enhancements: vec![
556550
Rc::new(RefCell::new(AntiAimPunsh::new(cvar_sensitivity))),

controller/src/radar.rs

Lines changed: 0 additions & 137 deletions
This file was deleted.

0 commit comments

Comments
 (0)