summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorColin Noga <Tempus@chronometry.ca>2012-02-22 22:13:41 -0600
committerColin Noga <Tempus@chronometry.ca>2012-02-22 22:13:41 -0600
commite2bb29c4bbf36a4e45a7312943fa50c319b8bc26 (patch)
tree94398545b312561bf040baa91731cbdde2ae409b /include
parent81e992698ee5ff68b569c795d316f99ab7c1ec87 (diff)
downloadkamek-e2bb29c4bbf36a4e45a7312943fa50c319b8bc26.tar.gz
kamek-e2bb29c4bbf36a4e45a7312943fa50c319b8bc26.zip
Broken Shy Guy Commit
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);