OldBlueWater/BlueWater/Assets/02.Scripts/Interface/ISkill.cs

11 lines
246 B
C#
Raw Normal View History

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface ISkill
{
SkillInputData SkillInputData { get; set; }
void ActivateSkill();
bool EnableSkill();
void InitData();
}
}