16 lines
392 B
C#
16 lines
392 B
C#
|
using Game.Player;
|
|||
|
|
|||
|
namespace Game;
|
|||
|
|
|||
|
public class PlayerJinBeiChange_ToMainUIEventArgs : GameEventArgs
|
|||
|
{
|
|||
|
public static readonly int EventId = typeof(PlayerJinBeiChange_ToMainUIEventArgs).GetHashCode();
|
|||
|
public override int Id => EventId;
|
|||
|
|
|||
|
public IPlayer player { get; }
|
|||
|
|
|||
|
public PlayerJinBeiChange_ToMainUIEventArgs(IPlayer player)
|
|||
|
{
|
|||
|
this.player = player;
|
|||
|
}
|
|||
|
}
|