2024-04-10 16:18:32 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using Game.Player;
|
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
namespace Game
|
2024-04-10 16:18:32 +08:00
|
|
|
|
{
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public class JinBeiSettlementEventArgs : GameEventArgs
|
|
|
|
|
{
|
|
|
|
|
public static readonly int EventId = typeof(JinBeiSettlementEventArgs).GetHashCode();
|
|
|
|
|
public override int Id => EventId;
|
2024-04-10 16:18:32 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public List<IPlayer> players { get; }
|
|
|
|
|
public float jinbei { get; }
|
2024-04-10 16:18:32 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public JinBeiSettlementEventArgs(List<IPlayer> players, float jinbei)
|
|
|
|
|
{
|
|
|
|
|
this.players = players;
|
|
|
|
|
this.jinbei = jinbei;
|
|
|
|
|
}
|
2024-04-10 16:18:32 +08:00
|
|
|
|
}
|
|
|
|
|
}
|