Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / role / enemy / state / AiProbeStateBase.cs
@小李xl 小李xl on 28 Nov 2022 197 bytes 发现玩家, 并跟踪玩家

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