OldBlueWater/BlueWater/Assets/02.Scripts/Interface/IStun.cs
NTG 6bbf6b2b86 Closes #207 전투 플레이어 스턴 효과 추가
+ IStun 인터페이스 추가
+ 전투 플레이어 Stun 파티클 추가
+ 코뿔소 JumpSmash 스턴 변경에 따른 로직 변경
+ EarthquakeWave, LineRush material 수정(라인 변경)
2024-02-16 17:12:48 +09:00

10 lines
183 B
C#

// ReSharper disable once CheckNamespace
namespace BlueWaterProject
{
public interface IStun
{
bool IsStunned { get; set; }
void Stun(float stunTime);
}
}