java Programming Glossary: collisionlistener
SWIG Java Retaining Class information of the objects bouncing from C++ http://stackoverflow.com/questions/9817516/swig-java-retaining-class-information-of-the-objects-bouncing-from-c The game engine has a GameObject class which registers CollisionListener s and when the collision engine detects a collision event it.. s passing them with what object they've collided. class CollisionListener public virtual bool collidedWith GameObject ~CollisionListener.. public virtual bool collidedWith GameObject ~CollisionListener I know this needs to be virtual but let's forget about that..
|