From 58839e611e55ab774b28394417801db1ec510e92 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Wed, 25 Mar 2026 13:50:22 -0700 Subject: [PATCH] chore: remove 3 unused includes from game_screen.cpp Remove character_preview.hpp, spawn_presets.hpp, and blp_loader.hpp which are included but not used in game_screen.cpp. --- src/ui/game_screen.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/game_screen.cpp b/src/ui/game_screen.cpp index 022f8884..1d68f37d 100644 --- a/src/ui/game_screen.cpp +++ b/src/ui/game_screen.cpp @@ -1,11 +1,9 @@ #include "ui/game_screen.hpp" #include "ui/ui_colors.hpp" -#include "rendering/character_preview.hpp" #include "rendering/vk_context.hpp" #include "core/application.hpp" #include "addons/addon_manager.hpp" #include "core/coordinates.hpp" -#include "core/spawn_presets.hpp" #include "core/input.hpp" #include "rendering/renderer.hpp" #include "rendering/wmo_renderer.hpp" @@ -29,7 +27,6 @@ #include "audio/movement_sound_manager.hpp" #include "pipeline/asset_manager.hpp" #include "pipeline/dbc_loader.hpp" -#include "pipeline/blp_loader.hpp" #include "pipeline/dbc_layout.hpp" #include "game/expansion_profile.hpp"