summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xinclude/game.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/game.h b/include/game.h
index a7bafac..9dd1605 100755
--- a/include/game.h
+++ b/include/game.h
@@ -1160,7 +1160,7 @@ public:
class ActivePhysics {
public:
struct Info; // forward declaration
- typedef void (*Callback)(Info *self, Info *other);
+ typedef void (*Callback)(ActivePhysics *self, ActivePhysics *other);
struct Info {
float xDistToCenter;
@@ -1912,7 +1912,7 @@ public:
~dEn_c();
- static void collisionCallback(ActivePhysics::Info *one, ActivePhysics::Info *two);
+ static void collisionCallback(ActivePhysics *one, ActivePhysics *two);
void doSpriteMovement();
bool CheckIfPlayerBelow(float,float);