From abe8b9510b888c80e97fc96a1da990424582068c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 3 Oct 2019 01:30:04 -0400 Subject: [PATCH] CAtomicBeta: Organize cpp includes --- Runtime/MP1/World/CAtomicBeta.cpp | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Runtime/MP1/World/CAtomicBeta.cpp b/Runtime/MP1/World/CAtomicBeta.cpp index 44da43010..2225ff6c0 100644 --- a/Runtime/MP1/World/CAtomicBeta.cpp +++ b/Runtime/MP1/World/CAtomicBeta.cpp @@ -1,11 +1,12 @@ -#include "CAtomicBeta.hpp" -#include "Particle/CWeaponDescription.hpp" -#include "Weapon/CPlayerGun.hpp" -#include "Weapon/CElectricBeamProjectile.hpp" -#include "World/CPlayer.hpp" -#include "GameGlobalObjects.hpp" -#include "CStateManager.hpp" -#include "CSimplePool.hpp" +#include "Runtime/MP1/World/CAtomicBeta.hpp" + +#include "Runtime/CSimplePool.hpp" +#include "Runtime/CStateManager.hpp" +#include "Runtime/GameGlobalObjects.hpp" +#include "Runtime/Particle/CWeaponDescription.hpp" +#include "Runtime/Weapon/CElectricBeamProjectile.hpp" +#include "Runtime/Weapon/CPlayerGun.hpp" +#include "Runtime/World/CPlayer.hpp" namespace urde::MP1 { const std::string_view CAtomicBeta::skBombLocators[3] = {"bomb2_LCTR"sv, "bomb3_LCTR"sv, "bomb4_LCTR"sv};