OldBlueWater/BlueWater/Assets/02.Scripts/Interface/IAiStat.cs
NTG_Lenovo 86065e52a9 #10 Testing long range ai (arrow attack system)
Additional commit content
1. Modified ObjectPool Function(OnReleaseArrow and naming).
2. Modified hitBox tag in aiPrefab.
3. Modified Physics layer.
4. Modified TargetInfo variable from TargetTransform variable in FieldOfView script.
5. Added GetCurrentHp() in IAiStat script.
2023-08-09 16:44:09 +09:00

10 lines
203 B
C#

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface IAiStat : IAiBase
{
public AiStat AiStat { get; set; }
public float GetCurrentHp();
}
}