Stardew_Valley_Mods/GeneralMods/MapEvents/Framework/FunctionEvents/MouseEntryLeaveEvent.cs

22 lines
980 B
C#

namespace EventSystem.Framework.FunctionEvents
{
/// <summary>Used to handle events that happens when a mouse enters/leaves a specified position.</summary>
public class MouseEntryLeaveEvent
{
/// <summary>A function that is called when a mouse enters a certain position.</summary>
public functionEvent onMouseEnter;
/// <summary>A function that is called when a mouse leaves a certain position.</summary>
public functionEvent onMouseLeave;
/// <summary>Construct an instance.</summary>
/// <param name="OnMouseEnter">The function that occurs when the mouse enters a certain position.</param>
/// <param name="OnMouseLeave">The function that occurs when the mouse leaves a certain position.</param>
public MouseEntryLeaveEvent(functionEvent OnMouseEnter, functionEvent OnMouseLeave)
{
this.onMouseEnter = OnMouseEnter;
this.onMouseLeave = OnMouseLeave;
}
}
}