create method

bool create(
  1. dynamic width,
  2. dynamic height
)

Implementation

bool create( width, height ){
	_gWorld.scroll(
		(width  - _gWorld.width ()) / 2.0,
		(height - _gWorld.height()) / 2.0
		);
	return _gWorld.create( width, height, false );
}