17 lines
389 B
C#
17 lines
389 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|