diff options
Diffstat (limited to 'src/object')
| -rw-r--r-- | src/object/ambientClouds.c | 1 | ||||
| -rw-r--r-- | src/object/chestSpawner.c | 1 | ||||
| -rw-r--r-- | src/object/itemOnGround.c | 1 | ||||
| -rw-r--r-- | src/object/pot.c | 1 | ||||
| -rw-r--r-- | src/object/smokeParticle.c | 2 | ||||
| -rw-r--r-- | src/object/specialFx.c | 1 | ||||
| -rw-r--r-- | src/object/steam.c | 1 | ||||
| -rw-r--r-- | src/object/thunderbolt.c | 1 |
8 files changed, 9 insertions, 0 deletions
diff --git a/src/object/ambientClouds.c b/src/object/ambientClouds.c index 05e604ce..8277b138 100644 --- a/src/object/ambientClouds.c +++ b/src/object/ambientClouds.c @@ -9,6 +9,7 @@ #include "entity.h" #include "object.h" #include "player.h" +#include "script.h" void AmbientClouds_Init(Entity* this); void AmbientClouds_Action1(Entity* this); diff --git a/src/object/chestSpawner.c b/src/object/chestSpawner.c index b739489c..5c454666 100644 --- a/src/object/chestSpawner.c +++ b/src/object/chestSpawner.c @@ -13,6 +13,7 @@ #include "room.h" #include "player.h" #include "screen.h" +#include "script.h" #include "tiles.h" #include "manager/lightManager.h" #include "pauseMenu.h" diff --git a/src/object/itemOnGround.c b/src/object/itemOnGround.c index e74438e4..860f52a4 100644 --- a/src/object/itemOnGround.c +++ b/src/object/itemOnGround.c @@ -17,6 +17,7 @@ #include "room.h" #include "physics.h" #include "player.h" +#include "script.h" #include "sound.h" #include "tiles.h" diff --git a/src/object/pot.c b/src/object/pot.c index 8dda49f9..758c6b92 100644 --- a/src/object/pot.c +++ b/src/object/pot.c @@ -15,6 +15,7 @@ #include "object/itemOnGround.h" #include "player.h" #include "room.h" +#include "script.h" #include "sound.h" #include "tiles.h" diff --git a/src/object/smokeParticle.c b/src/object/smokeParticle.c index 52aef4f4..68963f44 100644 --- a/src/object/smokeParticle.c +++ b/src/object/smokeParticle.c @@ -8,6 +8,8 @@ #include "object.h" #include "asm.h" #include "sound.h" +#include "script.h" +#include "player.h" #include "room.h" #include "tiles.h" diff --git a/src/object/specialFx.c b/src/object/specialFx.c index a580acfc..63afabd3 100644 --- a/src/object/specialFx.c +++ b/src/object/specialFx.c @@ -7,6 +7,7 @@ #include "entity.h" #include "object.h" #include "asm.h" +#include "script.h" #include "sound.h" #include "effects.h" #include "room.h" diff --git a/src/object/steam.c b/src/object/steam.c index 7cef37d1..f13bde3c 100644 --- a/src/object/steam.c +++ b/src/object/steam.c @@ -8,6 +8,7 @@ #include "entity.h" #include "player.h" #include "room.h" +#include "script.h" #include "screen.h" const u8 gUnk_08123484[]; diff --git a/src/object/thunderbolt.c b/src/object/thunderbolt.c index 312b1306..d79159cc 100644 --- a/src/object/thunderbolt.c +++ b/src/object/thunderbolt.c @@ -6,6 +6,7 @@ */ #include "object.h" #include "asm.h" +#include "script.h" #include "sound.h" #include "physics.h" #include "player.h" |
