Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / role / enemy / state / AiProbeState.cs
@小李xl 小李xl on 28 Nov 2022 189 bytes 重命名状态类

/// <summary>
/// Ai 不确定玩家位置
/// </summary>
public class AiProbeState : StateBase<Enemy, AIStateEnum>
{
    public AiProbeState() : base(AIStateEnum.AIProbe)
    {
    }
}