namespace StardewModdingAPI.Framework.Content { /// A set of operations to apply to an asset for a given or implementation. /// The mod applying the changes. /// The load operations to apply. /// The edit operations to apply. internal record AssetOperationGroup(IModMetadata Mod, AssetLoadOperation[] LoadOperations, AssetEditOperation[] EditOperations); }