diff options
| author | Jcw87 <Jcw87@users.noreply.github.com> | 2023-05-12 12:10:14 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-12 12:10:14 -0700 |
| commit | 221f40e6097dfe76c76602aa21aa07d5f760dce4 (patch) | |
| tree | b8f2549712927365bcffd13688729555a4276ff1 /src/d/kankyo | |
| parent | 8c7cda85891b41cfdbce72ed4efb00292f34a16a (diff) | |
Remove #includes from headers (#334)
* add "global.h" to files that use it
* add MSL_C includes to files that use them
* remove dolphin includes from headers that don't need them
* remove JSupport includes from headers that don't need them
* remove JKernel includes from headers that don't need them
* remove JUtility includes from headers that don't need them
* remove J3D includes from headers that don't need them
* remove J2D includes from headers that don't need them
* remove JAudio2 includes from headers that don't need them
* remove Z2AudioLib includes from headers that don't need them
* remove JMessage includes from headers that don't need them
* remove JParticle includes from headers that don't need them
* remove SComponent includes from headers that don't need them
* remove dol includes from headers that don't need them
* sort includes
Diffstat (limited to 'src/d/kankyo')
| -rw-r--r-- | src/d/kankyo/d_kankyo.cpp | 4 | ||||
| -rw-r--r-- | src/d/kankyo/d_kankyo_rain.cpp | 2 | ||||
| -rw-r--r-- | src/d/kankyo/d_kankyo_wether.cpp | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/src/d/kankyo/d_kankyo.cpp b/src/d/kankyo/d_kankyo.cpp index 7237f3678c..d6e334fe01 100644 --- a/src/d/kankyo/d_kankyo.cpp +++ b/src/d/kankyo/d_kankyo.cpp @@ -5,13 +5,17 @@ #include "d/kankyo/d_kankyo.h" #include "MSL_C/string.h" +#include "JSystem/J3DGraphBase/J3DMatBlock.h" #include "SSystem/SComponent/c_counter.h" #include "SSystem/SComponent/c_math.h" #include "d/com/d_com_inf_game.h" #include "d/kankyo/d_kankyo_data.h" +#include "d/meter/d_meter2_info.h" #include "d/msg/d_msg_object.h" #include "dol2asm.h" +#include "dolphin/os/OS.h" #include "dolphin/types.h" +#include "global.h" #include "m_Do/m_Do_audio.h" // diff --git a/src/d/kankyo/d_kankyo_rain.cpp b/src/d/kankyo/d_kankyo_rain.cpp index 8630e948e1..3d3b2e607d 100644 --- a/src/d/kankyo/d_kankyo_rain.cpp +++ b/src/d/kankyo/d_kankyo_rain.cpp @@ -6,10 +6,12 @@ #include "d/kankyo/d_kankyo_rain.h" #include "MSL_C/math.h" #include "MSL_C/string.h" +#include "d/a/d_a_player.h" #include "d/com/d_com_inf_game.h" #include "d/d_demo.h" #include "dol2asm.h" #include "dolphin/types.h" +#include "f_op/f_op_actor_mng.h" // // Forward References: diff --git a/src/d/kankyo/d_kankyo_wether.cpp b/src/d/kankyo/d_kankyo_wether.cpp index 4a99929522..81dbab3a97 100644 --- a/src/d/kankyo/d_kankyo_wether.cpp +++ b/src/d/kankyo/d_kankyo_wether.cpp @@ -4,6 +4,8 @@ // #include "d/kankyo/d_kankyo_wether.h" +#include "JSystem/J3DGraphBase/J3DDrawBuffer.h" +#include "JSystem/JKernel/JKRHeap.h" #include "MSL_C/string.h" #include "Z2AudioLib/Z2EnvSeMgr.h" #include "d/com/d_com_inf_game.h" @@ -11,6 +13,7 @@ #include "d/kankyo/d_kankyo_rain.h" #include "dol2asm.h" #include "dolphin/types.h" +#include "global.h" #include "m_Do/m_Do_audio.h" // |
