mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
15 lines
239 B
C#
15 lines
239 B
C#
|
using System;
|
|||
|
|
|||
|
namespace MSFSPopoutPanelManager.Shared
|
|||
|
{
|
|||
|
public class EventArgs<T> : EventArgs
|
|||
|
{
|
|||
|
public T Value { get; private set; }
|
|||
|
|
|||
|
public EventArgs(T val)
|
|||
|
{
|
|||
|
Value = val;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|