10 lines
194 B
C#
10 lines
194 B
C#
|
|
// ReSharper disable once CheckNamespace
|
||
|
|
namespace BlueWaterProject
|
||
|
|
{
|
||
|
|
public interface IAnimatorBridge
|
||
|
|
{
|
||
|
|
void AttackTiming();
|
||
|
|
void SetIsAttacking(int boolValue);
|
||
|
|
}
|
||
|
|
}
|