using Microsoft.Xna.Framework; using xTile; namespace StardewModdingAPI { /// Encapsulates access and changes to map content being read from a data file. public interface IAssetDataForMap : IAssetData { /********* ** Public methods *********/ /// Copy layers, tiles, and tilesheets from another map onto the asset. /// The map from which to copy. /// The tile area within the source map to copy, or null for the entire source map size. This must be within the bounds of the map. /// The tile area within the target map to overwrite, or null to patch the whole map. The original content within this area will be erased. This must be within the bounds of the existing map. void PatchMap(Map source, Rectangle? sourceArea = null, Rectangle? targetArea = null); } }