slightly tweak features::game_networking design & add visual indicator for blocking failing due to game being closed

This commit is contained in:
2025-04-20 01:25:25 +01:00
parent 10168e84d1
commit ccc27b1944
3 changed files with 86 additions and 20 deletions
+7
View File
@@ -8,3 +8,10 @@ pub mod game {
pub const EXE_LEGACY: &str = "GTA5.exe";
pub const WINDOW_TITLE: &str = "Grand Theft Auto V";
}
pub mod colours {
use eframe::egui::Color32;
pub const RED: Color32 = Color32::from_rgb(249, 101, 84);
pub const YELLOW: Color32 = Color32::from_rgb(249, 236, 84);
pub const GREEN: Color32 = Color32::from_rgb(104, 249, 84);
}