Can someone explain the in what way works the collision detection using box2d for android. I cannot understand in what way works BBContactListener.
BBContactListener listener = new BBContactListener();
world = new BBWorld(gravity, doSleep);
world.SetContactListener(listener);
How to use that listener? Should I extend standart to create my own or how?