File SafeZoneChangedEventArgs.cs
File List > LemonUI > LemonUI > SafeZoneChangedEventArgs.cs
Go to the documentation of this file
namespace LemonUI
{
public class SafeZoneChangedEventArgs
{
#region Properties
public float Before { get; }
public float After { get; }
#endregion
#region Constructors
internal SafeZoneChangedEventArgs(float before, float after)
{
Before = before;
After = after;
}
#endregion
}
}