12 lines
172 B
C#
12 lines
172 B
C#
using UnityEngine;
|
|
|
|
namespace UniVRM10
|
|
{
|
|
public interface IVrm10Constraint
|
|
{
|
|
internal void Process();
|
|
|
|
GameObject ConstraintTarget { get; }
|
|
}
|
|
}
|