コード例 #1
0
ファイル: Assets.cpp プロジェクト: kikko/ofApps
void Assets::loadImg(string imgName) {
	
	CachedImage * img = new CachedImage();
	img->loadImage(imgName);
	img->imgName = imgName;
	Instance()->images.push_back( img );
}