summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/ItemStackChange.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/SMAPI/Events/ItemStackChange.cs')
-rw-r--r--src/SMAPI/Events/ItemStackChange.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/SMAPI/Events/ItemStackChange.cs b/src/SMAPI/Events/ItemStackChange.cs
new file mode 100644
index 00000000..f9ae6df6
--- /dev/null
+++ b/src/SMAPI/Events/ItemStackChange.cs
@@ -0,0 +1,20 @@
+using StardewValley;
+
+namespace StardewModdingAPI.Events
+{
+ /// <summary>Represents an inventory slot that changed.</summary>
+ public class ItemStackChange
+ {
+ /*********
+ ** Accessors
+ *********/
+ /// <summary>The item in the slot.</summary>
+ public Item Item { get; set; }
+
+ /// <summary>The amount by which the item's stack size changed.</summary>
+ public int StackChange { get; set; }
+
+ /// <summary>How the inventory slot changed.</summary>
+ public ChangeType ChangeType { get; set; }
+ }
+} \ No newline at end of file