modular-avatar/Runtime/ArmatureAwase/IArmatureLock.cs

10 lines
194 B
C#
Raw Normal View History

using System;
namespace nadena.dev.modular_avatar.core.armature_lock
{
internal interface IArmatureLock : IDisposable
{
LockResult Execute();
bool IsStable();
}
}