using System;
using Microsoft.Xna.Framework;
using StardewValley;
using Object = StardewValley.Object;
namespace StardewModdingAPI.Events
{
/// Event arguments for a event.
public class EventArgsLocationObjectsChanged : EventArgs
{
/*********
** Accessors
*********/
/// The current list of objects in the current location.
public SerializableDictionary NewObjects { get; }
/*********
** Public methods
*********/
/// Construct an instance.
/// The current list of objects in the current location.
public EventArgsLocationObjectsChanged(SerializableDictionary newObjects)
{
this.NewObjects = newObjects;
}
}
}