Exemplo n.º 1
0
 public ActorAsset(String name, GraphicsDevice graphicsDevice)
 {
     this.name = name;
     textures = new AssetGraphicStore("images\\actors", name, graphicsDevice);
 }
Exemplo n.º 2
0
 public LocationAsset(String name, GraphicsDevice graphicsDevice)
 {
     this.name = name;
     textures = new AssetGraphicStore("images\\backgrounds", name, graphicsDevice);
 }