summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/IAssetEditor.cs
blob: b66ec15ee0b0547f70e8890b04733955e913afb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace StardewModdingAPI
{
    /// <summary>Edits a loaded content asset.</summary>
    public interface IAssetEditor
    {
        /*********
        ** Public methods
        *********/
        /// <summary>Get whether this instance can edit the given asset.</summary>
        /// <param name="asset">Basic metadata about the asset being loaded.</param>
        bool CanEdit<T>(IAssetInfo asset);

        /// <summary>Edit a matched asset.</summary>
        /// <param name="asset">A helper which encapsulates metadata about an asset and enables changes to it.</param>
        void Edit<T>(IAssetData asset);
    }
}