blob: 22d882ad706610b32340a37be008cdd9754c32c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
diff --git a/src/FireBall.cpp b/src/FireBall.cpp
index 6f3eacc..6f5eade 100644
--- a/src/FireBall.cpp
+++ b/src/FireBall.cpp
@@ -1,4 +1,4 @@
-#include "FireBall.h"
+#include "Fireball.h"
#include "Core.h"
#include <math.h>
@@ -68,4 +68,4 @@ void FireBall::updateXPos() {
void FireBall::collisionWithPlayer(bool TOP) {
CCore::getMap()->playerDeath(true, false);
-}
\ No newline at end of file
+}
diff --git a/src/Map.h b/src/Map.h
index b812b49..f6abbb9 100644
--- a/src/Map.h
+++ b/src/Map.h
@@ -28,7 +28,7 @@
#include "Flower.h"
#include "Lakito.h"
#include "Spikey.h"
-#include "FireBall.h"
+#include "Fireball.h"
#include "Fire.h"
#include "Pipe.h"
#include "Spring.h"
@@ -406,4 +406,4 @@ public:
void setInEvent(bool inEvent);
};
-#endif
\ No newline at end of file
+#endif
|