to new git
This commit is contained in:
17
Assets/Scripts/Character/Interfaces/INpcBaseState.cs
Normal file
17
Assets/Scripts/Character/Interfaces/INpcBaseState.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using UnityEngine;
|
||||
|
||||
public interface INpcBaseState
|
||||
{
|
||||
NpcEnumState State { get; }
|
||||
bool InCover { get; }
|
||||
bool IsRunning { get; }
|
||||
bool InDirectPoint { get; }
|
||||
float HitChance { get; }
|
||||
float DoDamageChance { get; }
|
||||
}
|
||||
|
||||
public interface INpcBaseBodyState
|
||||
{
|
||||
NpcBodyState State { get; }
|
||||
Vector3 GetPointToHit(GameObject go);
|
||||
}
|
Reference in New Issue
Block a user