diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-01 18:57:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-01 18:57:05 -0500 |
commit | 00932a335c86be1303ff6443b38d1db629b444fc (patch) | |
tree | 8376207a89b08b4e72c1bcbd46ecd3946e516e5c /src/SMAPI/Events/IWorldEvents.cs | |
parent | dca60f42b2048d6b0b27517b9e7686665e61e9c2 (diff) | |
parent | b6aef499d3c9b82d33c75039e0ed58c22618c426 (diff) | |
download | SMAPI-00932a335c86be1303ff6443b38d1db629b444fc.tar.gz SMAPI-00932a335c86be1303ff6443b38d1db629b444fc.tar.bz2 SMAPI-00932a335c86be1303ff6443b38d1db629b444fc.zip |
Merge pull request #686 from wartech0/chest-tracking
Add chest items changed event
Diffstat (limited to 'src/SMAPI/Events/IWorldEvents.cs')
-rw-r--r-- | src/SMAPI/Events/IWorldEvents.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Events/IWorldEvents.cs b/src/SMAPI/Events/IWorldEvents.cs index 0ceffcc1..9569a57b 100644 --- a/src/SMAPI/Events/IWorldEvents.cs +++ b/src/SMAPI/Events/IWorldEvents.cs @@ -23,6 +23,9 @@ namespace StardewModdingAPI.Events /// <summary>Raised after objects are added or removed in a location.</summary> event EventHandler<ObjectListChangedEventArgs> ObjectListChanged; + /// <summary>Raised after items are added or removed from a chest.</summary> + event EventHandler<ChestInventoryChangedEventArgs> ChestInventoryChanged; + /// <summary>Raised after terrain features (like floors and trees) are added or removed in a location.</summary> event EventHandler<TerrainFeatureListChangedEventArgs> TerrainFeatureListChanged; } |