diff options
Diffstat (limited to 'src/SMAPI/Framework/StateTracking/IWatcher.cs')
-rw-r--r-- | src/SMAPI/Framework/StateTracking/IWatcher.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Framework/StateTracking/IWatcher.cs b/src/SMAPI/Framework/StateTracking/IWatcher.cs index 8c7fa51c..4a0e3998 100644 --- a/src/SMAPI/Framework/StateTracking/IWatcher.cs +++ b/src/SMAPI/Framework/StateTracking/IWatcher.cs @@ -8,6 +8,9 @@ namespace StardewModdingAPI.Framework.StateTracking /********* ** Accessors *********/ + /// <summary>A name which identifies what the watcher is watching, used for troubleshooting.</summary> + string Name { get; } + /// <summary>Whether the value changed since the last reset.</summary> bool IsChanged { get; } |