forked from zxl/Frame
1
0
Fork 0
Frame/Assets/Scripts/Event/Args/InputNameFinishEventArgs.cs

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