open method

bool open(
  1. List<int> image,
  2. int offset,
  3. int width,
  4. int height,
)

Implementation

bool open( List<int> image, int offset, int width, int height ){
	_gWorld.scroll(
		(width  - _gWorld.width ()) / 2.0,
		(height - _gWorld.height()) / 2.0
		);
	return _gWorld.open( image, offset, width, height, false );
}