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
|
|
|
|
/// <summary>
|
|
|
|
|
/// boss开始行动了
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BossStartMoveEventArgs : GameEventArgs
|
|
|
|
|
{
|
|
|
|
|
public static readonly int EventId = typeof(BossStartMoveEventArgs).GetHashCode();
|
|
|
|
|
public override int Id => EventId;
|
2024-04-09 18:16:37 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public bool isMoveing { get; }
|
2024-04-09 18:16:37 +08:00
|
|
|
|
|
2024-04-11 16:44:25 +08:00
|
|
|
|
public BossStartMoveEventArgs(bool isMoveing)
|
|
|
|
|
{
|
|
|
|
|
this.isMoveing = isMoveing;
|
|
|
|
|
}
|
2024-04-09 18:16:37 +08:00
|
|
|
|
}
|
|
|
|
|
}
|