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