diff options
author | Treeki <treeki@gmail.com> | 2012-09-24 00:53:20 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2012-09-24 00:53:20 +0200 |
commit | ec8ad32b054e7680aec1536b36a02f6aaf154c0b (patch) | |
tree | fc9f598151ac35d72c2aa70c6733de1766615cd1 /include | |
parent | e739a0171f3efc5791ae32460a341d284efa36be (diff) | |
download | kamek-ec8ad32b054e7680aec1536b36a02f6aaf154c0b.tar.gz kamek-ec8ad32b054e7680aec1536b36a02f6aaf154c0b.zip |
unfinished ActivePhysics debugging
Diffstat (limited to '')
-rwxr-xr-x | include/game.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h index 837d340..4695ea6 100755 --- a/include/game.h +++ b/include/game.h @@ -1213,6 +1213,8 @@ public: void update();
+ static Physics *globalListHead;
+ static Physics *globalListTail;
// todo: more stuff that might not be relevant atm
};
@@ -1275,6 +1277,9 @@ public: float xCenter();
// Plus more stuff that isn't needed in the public API, I'm pretty sure.
+
+ static ActivePhysics *globalListHead;
+ static ActivePhysics *globalListTail;
};
|