diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-02-22 22:13:41 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-02-22 22:13:41 -0600 |
commit | e2bb29c4bbf36a4e45a7312943fa50c319b8bc26 (patch) | |
tree | 94398545b312561bf040baa91731cbdde2ae409b /include | |
parent | 81e992698ee5ff68b569c795d316f99ab7c1ec87 (diff) | |
download | kamek-e2bb29c4bbf36a4e45a7312943fa50c319b8bc26.tar.gz kamek-e2bb29c4bbf36a4e45a7312943fa50c319b8bc26.zip |
Broken Shy Guy Commit
Diffstat (limited to '')
-rwxr-xr-x | include/game.h | 4 |
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);
|