summaryrefslogtreecommitdiff
path: root/src/projectile
diff options
context:
space:
mode:
authortheo3 <arisstephenson2@gmail.com>2022-03-28 17:28:17 -0700
committertheo3 <arisstephenson2@gmail.com>2022-03-28 17:28:17 -0700
commit755571834d4fc0e21fdd45b065728c87574a3a07 (patch)
treea22746b07f5c00af9daaa3feb0792c7ba4de1beb /src/projectile
parent6cf555f074375c8134ce44b8ba68095a3a90ec46 (diff)
rename coord.h to physics.h
Diffstat (limited to 'src/projectile')
-rw-r--r--src/projectile/darkNutSwordSlash.c2
-rw-r--r--src/projectile/dirtBallProjectile.c2
-rw-r--r--src/projectile/guardLineOfSight.c2
-rw-r--r--src/projectile/guruguruBarProjectile.c2
-rw-r--r--src/projectile/gyorgMaleEnergyProjectile.c2
-rw-r--r--src/projectile/gyorgTail.c2
-rw-r--r--src/projectile/keatonDagger.c2
-rw-r--r--src/projectile/mandiblesProjectile.c2
-rw-r--r--src/projectile/mazaalEnergyBeam.c2
-rw-r--r--src/projectile/moblinSpear.c2
-rw-r--r--src/projectile/projectile5.c2
-rw-r--r--src/projectile/removableDust.c2
-rw-r--r--src/projectile/v1DarkMagicProjectile.c2
-rw-r--r--src/projectile/v3ElectricProjectile.c2
14 files changed, 14 insertions, 14 deletions
diff --git a/src/projectile/darkNutSwordSlash.c b/src/projectile/darkNutSwordSlash.c
index 20b968db..3f08486f 100644
--- a/src/projectile/darkNutSwordSlash.c
+++ b/src/projectile/darkNutSwordSlash.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "player.h"
-#include "coord.h"
+#include "physics.h"
extern const u8 DarkNutSwordSlash_hitTypes[];
extern void (*const DarkNutSwordSlash_UpdatesForType[])(Entity*);
diff --git a/src/projectile/dirtBallProjectile.c b/src/projectile/dirtBallProjectile.c
index 843bdafa..70fa0259 100644
--- a/src/projectile/dirtBallProjectile.c
+++ b/src/projectile/dirtBallProjectile.c
@@ -2,7 +2,7 @@
#include "entity.h"
#include "enemy.h"
#include "player.h"
-#include "coord.h"
+#include "physics.h"
#include "functions.h"
extern void (*const DirtBallProjectile_Functions[])(Entity*);
diff --git a/src/projectile/guardLineOfSight.c b/src/projectile/guardLineOfSight.c
index 128052fb..185b21d1 100644
--- a/src/projectile/guardLineOfSight.c
+++ b/src/projectile/guardLineOfSight.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "asm.h"
-#include "coord.h"
+#include "physics.h"
#include "functions.h"
#include "projectile.h"
#include "hitbox.h"
diff --git a/src/projectile/guruguruBarProjectile.c b/src/projectile/guruguruBarProjectile.c
index fc88e2cf..0d290982 100644
--- a/src/projectile/guruguruBarProjectile.c
+++ b/src/projectile/guruguruBarProjectile.c
@@ -1,6 +1,6 @@
#include "entity.h"
-#include "coord.h"
+#include "physics.h"
void sub_080AABB0(Entity*);
diff --git a/src/projectile/gyorgMaleEnergyProjectile.c b/src/projectile/gyorgMaleEnergyProjectile.c
index 69c0aa73..670be319 100644
--- a/src/projectile/gyorgMaleEnergyProjectile.c
+++ b/src/projectile/gyorgMaleEnergyProjectile.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "enemy.h"
-#include "coord.h"
+#include "physics.h"
#include "player.h"
#include "functions.h"
diff --git a/src/projectile/gyorgTail.c b/src/projectile/gyorgTail.c
index c9dc6a8b..956a66fa 100644
--- a/src/projectile/gyorgTail.c
+++ b/src/projectile/gyorgTail.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "asm.h"
-#include "coord.h"
+#include "physics.h"
#include "sound.h"
#include "functions.h"
#include "projectile.h"
diff --git a/src/projectile/keatonDagger.c b/src/projectile/keatonDagger.c
index 8c9bc2f1..4fba42e0 100644
--- a/src/projectile/keatonDagger.c
+++ b/src/projectile/keatonDagger.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "player.h"
-#include "coord.h"
+#include "physics.h"
extern void sub_0803C0AC(Entity*);
diff --git a/src/projectile/mandiblesProjectile.c b/src/projectile/mandiblesProjectile.c
index 1bc2c36e..f050bd09 100644
--- a/src/projectile/mandiblesProjectile.c
+++ b/src/projectile/mandiblesProjectile.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "enemy.h"
-#include "coord.h"
+#include "physics.h"
#include "functions.h"
#include "game.h"
#include "hitbox.h"
diff --git a/src/projectile/mazaalEnergyBeam.c b/src/projectile/mazaalEnergyBeam.c
index 095f8e45..10879e6c 100644
--- a/src/projectile/mazaalEnergyBeam.c
+++ b/src/projectile/mazaalEnergyBeam.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "sound.h"
-#include "coord.h"
+#include "physics.h"
extern void (*const MazaalEnergyBeam_Actions[])(Entity*);
diff --git a/src/projectile/moblinSpear.c b/src/projectile/moblinSpear.c
index 039eaa1d..d3c5bd1a 100644
--- a/src/projectile/moblinSpear.c
+++ b/src/projectile/moblinSpear.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "enemy.h"
-#include "coord.h"
+#include "physics.h"
typedef struct {
s8 offsetX;
diff --git a/src/projectile/projectile5.c b/src/projectile/projectile5.c
index 84004de0..0c9a347d 100644
--- a/src/projectile/projectile5.c
+++ b/src/projectile/projectile5.c
@@ -2,7 +2,7 @@
#include "enemy.h"
#include "player.h"
#include "room.h"
-#include "coord.h"
+#include "physics.h"
extern u32 sub_080B1B44(u32, u32);
diff --git a/src/projectile/removableDust.c b/src/projectile/removableDust.c
index 0822b00e..a405d237 100644
--- a/src/projectile/removableDust.c
+++ b/src/projectile/removableDust.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "enemy.h"
-#include "coord.h"
+#include "physics.h"
#include "functions.h"
#include "object.h"
diff --git a/src/projectile/v1DarkMagicProjectile.c b/src/projectile/v1DarkMagicProjectile.c
index 188fed6e..5f034678 100644
--- a/src/projectile/v1DarkMagicProjectile.c
+++ b/src/projectile/v1DarkMagicProjectile.c
@@ -1,6 +1,6 @@
#include "entity.h"
#include "enemy.h"
-#include "coord.h"
+#include "physics.h"
#include "player.h"
#include "functions.h"
diff --git a/src/projectile/v3ElectricProjectile.c b/src/projectile/v3ElectricProjectile.c
index 77308f1e..70131ffa 100644
--- a/src/projectile/v3ElectricProjectile.c
+++ b/src/projectile/v3ElectricProjectile.c
@@ -2,7 +2,7 @@
#include "collision.h"
#include "enemy.h"
#include "player.h"
-#include "coord.h"
+#include "physics.h"
#include "functions.h"
extern void (*const V3ElectricProjectile_Functions[])(Entity*);