mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-01-11 19:44:55 +00:00
15 lines
257 B
C#
15 lines
257 B
C#
namespace ICD.Common.EventArguments
|
|
{
|
|
public sealed class FloatEventArgs : GenericEventArgs<float>
|
|
{
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="data"></param>
|
|
public FloatEventArgs(float data)
|
|
: base(data)
|
|
{
|
|
}
|
|
}
|
|
}
|