9 lines
127 B
C#
9 lines
127 B
C#
|
namespace RoR2;
|
||
|
|
||
|
public interface IIKTargetBehavior
|
||
|
{
|
||
|
void UpdateIKTargetPosition();
|
||
|
|
||
|
void UpdateIKState(int targetState);
|
||
|
}
|