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