15 lines
374 B
C#
15 lines
374 B
C#
namespace Game
|
|
{
|
|
public class InputObjectFinishEventArgs : GameEventArgs
|
|
{
|
|
public static readonly int EventId = typeof(InputObjectFinishEventArgs).GetHashCode();
|
|
public override int Id => EventId;
|
|
|
|
public object data { get; }
|
|
|
|
public InputObjectFinishEventArgs(object data)
|
|
{
|
|
this.data = data;
|
|
}
|
|
}
|
|
} |