OldBlueWater/BlueWater/Assets/02.Scripts/NewSkill/Interfaces/ISkillUser.cs

12 lines
261 B
C#
Raw Normal View History

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