Init
This commit is contained in:
14
Animation/ItemEventArgs.cs
Normal file
14
Animation/ItemEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Ticker.Animation
|
||||
{
|
||||
public class ItemEventArgs<T> : EventArgs
|
||||
{
|
||||
public ItemEventArgs(T item)
|
||||
{
|
||||
Item = item;
|
||||
}
|
||||
|
||||
public T Item { get; private set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user