2024-04-09 18:16:37 +08:00
|
|
|
|
using Game.Player;
|
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
namespace Game
|
2024-04-09 18:16:37 +08:00
|
|
|
|
{
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public class InitCurrentPlayerDataEventArgs : GameEventArgs
|
|
|
|
|
{
|
|
|
|
|
public static readonly int EventId = typeof(InitCurrentPlayerDataEventArgs).GetHashCode();
|
|
|
|
|
public override int Id => EventId;
|
2024-04-09 18:16:37 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public IPlayer player { get; }
|
2024-04-09 18:16:37 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public InitCurrentPlayerDataEventArgs(IPlayer player)
|
|
|
|
|
{
|
|
|
|
|
this.player = player;
|
|
|
|
|
}
|
2024-04-09 18:16:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|