summaryrefslogtreecommitdiff
path: root/src/SMAPI/Events/WorldDebrisListChangedEventArgs.cs
blob: aad9c24dbb436800bd0d8dc1e309dd670a8c0d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using StardewValley;

namespace StardewModdingAPI.Events
{
    /// <summary>Event arguments for a <see cref="IWorldEvents.DebrisListChanged"/> event.</summary>
    public class WorldDebrisListChangedEventArgs : EventArgs
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The location which changed.</summary>
        public GameLocation Location { get; }

        /// <summary>The debris added to the location.</summary>
        public IEnumerable<Debris> Added { get; }

        /// <summary>The debris removed from the location.</summary>
        public IEnumerable<Debris> Removed { get; }


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="location">The location which changed.</param>
        /// <param name="added">The debris added to the location.</param>
        /// <param name="removed">The debris removed from the location.</param>
        public WorldDebrisListChangedEventArgs(GameLocation location, IEnumerable<Debris> added, IEnumerable<Debris> removed)
        {
            this.Location = location;
            this.Added = added.ToArray();
            this.Removed = removed.ToArray();
        }
    }
}