14 lines
259 B
C#

using GAS.Runtime;
namespace GameLogic
{
public interface ICombatComponent
{
AbilitySystemComponent ASC { get;}
void Init();
void OnEnable();
void OnUpdate();
void OnDisable();
void OnDestroy();
}
}