mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 02:21:27 -07:00
17 lines
398 B
C#
17 lines
398 B
C#
// https://github.com/MaximumADHD/Roblox-Studio-Mod-Manager/blob/main/ProjectSrc/Events/ChangeEvent.cs
|
|
|
|
namespace Bloxstrap.Helpers.RSMM
|
|
{
|
|
public delegate void ChangeEventHandler<T>(object sender, ChangeEventArgs<T> e);
|
|
|
|
public class ChangeEventArgs<T>
|
|
{
|
|
public T Value { get; }
|
|
|
|
public ChangeEventArgs(T value)
|
|
{
|
|
Value = value;
|
|
}
|
|
}
|
|
}
|