12 lines
261 B
C#
12 lines
261 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
public interface ISkillUser
|
||
|
{
|
||
|
void UseSkill(SkillBase skill, SkillInputData inputData);
|
||
|
}
|
||
|
}
|