diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-12 00:21:52 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-05-12 00:21:52 -0400 |
commit | a9cadc7f32fd9fd244fc3e22c62a35e7c257c084 (patch) | |
tree | d07a8b34608f46948505755a599c07da65a7fde7 /src/SMAPI/Framework/Content/AssetOperationGroup.cs | |
parent | 09f69d986f4f44521d8a2cd745269dce4b83320e (diff) | |
parent | e943ae84136d46432e04e577041850d2aa7db43e (diff) | |
download | SMAPI-a9cadc7f32fd9fd244fc3e22c62a35e7c257c084.tar.gz SMAPI-a9cadc7f32fd9fd244fc3e22c62a35e7c257c084.tar.bz2 SMAPI-a9cadc7f32fd9fd244fc3e22c62a35e7c257c084.zip |
Merge branch 'develop' into stable
Diffstat (limited to 'src/SMAPI/Framework/Content/AssetOperationGroup.cs')
-rw-r--r-- | src/SMAPI/Framework/Content/AssetOperationGroup.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/SMAPI/Framework/Content/AssetOperationGroup.cs b/src/SMAPI/Framework/Content/AssetOperationGroup.cs index 1566a8f0..11767d39 100644 --- a/src/SMAPI/Framework/Content/AssetOperationGroup.cs +++ b/src/SMAPI/Framework/Content/AssetOperationGroup.cs @@ -1,8 +1,9 @@ +using System.Collections.Generic; + namespace StardewModdingAPI.Framework.Content { - /// <summary>A set of operations to apply to an asset for a given <see cref="IAssetEditor"/> or <see cref="IAssetLoader"/> implementation.</summary> - /// <param name="Mod">The mod applying the changes.</param> + /// <summary>A set of operations to apply to an asset.</summary> /// <param name="LoadOperations">The load operations to apply.</param> /// <param name="EditOperations">The edit operations to apply.</param> - internal record AssetOperationGroup(IModMetadata Mod, AssetLoadOperation[] LoadOperations, AssetEditOperation[] EditOperations); + internal record AssetOperationGroup(List<AssetLoadOperation> LoadOperations, List<AssetEditOperation> EditOperations); } |