Ejemplo n.º 1
0
void Assets::loadImg(string imgName) {
	
	CachedImage * img = new CachedImage();
	img->loadImage(imgName);
	img->imgName = imgName;
	Instance()->images.push_back( img );
}