using UnityEngine; using System; using System.Collections; namespace LMWidgets { public class EventArg : EventArgs { private T m_currentValue; public T CurrentValue { get { return m_currentValue; } } public EventArg ( T currentValue ) { m_currentValue = currentValue; } } }