You need to either provide a default constructor for b2World, or you need to initialize world in the initializer list:
bc_Game::bc_Game() :world(gravity, sleep)
{
}
This would also require gravity and sleep to be pre-constructed though.
PigBen
2010-10-23 23:53:42