14 lines
269 B
C#
14 lines
269 B
C#
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
public interface ISkill
|
|
{
|
|
string Name { get; }
|
|
string Description { get;}
|
|
|
|
void Execute(LayerMask targetLayer, Vector3? targetPos = null);
|
|
}
|
|
}
|