Frame/Assets/Scripts/Event/Args/BossStartMoveEventArgs.cs

17 lines
389 B
C#
Raw Normal View History

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