From c36e6a85b94437a0df6907cef218dd605615a0b4 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 19 Oct 2019 00:03:01 -0400 Subject: [PATCH] CGunWeapon: Organize cpp includes Makes the source file consistent with the header. --- Runtime/Weapon/CGunWeapon.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Runtime/Weapon/CGunWeapon.cpp b/Runtime/Weapon/CGunWeapon.cpp index 8549822fe..4af118239 100644 --- a/Runtime/Weapon/CGunWeapon.cpp +++ b/Runtime/Weapon/CGunWeapon.cpp @@ -1,12 +1,13 @@ -#include "CGunWeapon.hpp" -#include "GameGlobalObjects.hpp" -#include "CSimplePool.hpp" -#include "CDependencyGroup.hpp" -#include "CGameState.hpp" -#include "CWeapon.hpp" -#include "CEnergyProjectile.hpp" -#include "Graphics/CSkinnedModel.hpp" -#include "Graphics/CVertexMorphEffect.hpp" +#include "Runtime/Weapon/CGunWeapon.hpp" + +#include "Runtime/CDependencyGroup.hpp" +#include "Runtime/CGameState.hpp" +#include "Runtime/CSimplePool.hpp" +#include "Runtime/GameGlobalObjects.hpp" +#include "Runtime/Graphics/CSkinnedModel.hpp" +#include "Runtime/Graphics/CVertexMorphEffect.hpp" +#include "Runtime/Weapon/CEnergyProjectile.hpp" +#include "Runtime/Weapon/CWeapon.hpp" namespace urde { static const char* skBeamXferNames[] = {"PowerXfer", "IceXfer", "WaveXfer", "PlasmaXfer", "PhazonXfer"};