14 lines
338 B
C#
14 lines
338 B
C#
|
namespace Game;
|
|||
|
|
|||
|
public class InputNameFinishEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(InputNameFinishEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
|
|||
|
public string playerName { get; }
|
|||
|
|
|||
|
public InputNameFinishEventArgs(string name)
|
|||
|
{
|
|||
|
this.playerName = name;
|
|||
|
}
|
|||
|
}
|