14 lines
332 B
C#
14 lines
332 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;
|
|
}
|
|
} |