コード例 #1
0
 public ActorAsset(String name, GraphicsDevice graphicsDevice)
 {
     this.name = name;
     textures = new AssetGraphicStore("images\\actors", name, graphicsDevice);
 }
コード例 #2
0
 public LocationAsset(String name, GraphicsDevice graphicsDevice)
 {
     this.name = name;
     textures = new AssetGraphicStore("images\\backgrounds", name, graphicsDevice);
 }