12 lines
275 B
C#
12 lines
275 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
namespace BlueWaterProject
|
||
|
|
{
|
||
|
|
public interface INormalAttack
|
||
|
|
{
|
||
|
|
public void NormalAttack();
|
||
|
|
public void StopNormalAttackCoroutine();
|
||
|
|
public bool GetUsedNormalAttackCoroutine();
|
||
|
|
}
|
||
|
|
}
|