2025-04-25 21:14:54 +09:00

11 lines
138 B
C#

using UnityEngine;
namespace UniHumanoid
{
public interface IPoseModifier
{
void Modify(ref HumanPose pose);
}
}