This commit is contained in:
2024-02-23 06:55:00 -05:00
commit 277fc69c11
12 changed files with 1073 additions and 0 deletions

View 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; }
}
}