2023-09-24 15:59:43 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace nadena.dev.modular_avatar.core.armature_lock
|
|
|
|
|
{
|
|
|
|
|
internal interface IArmatureLock : IDisposable
|
|
|
|
|
{
|
2024-02-17 18:20:08 +08:00
|
|
|
|
void Prepare();
|
2023-09-24 15:59:43 +08:00
|
|
|
|
LockResult Execute();
|
|
|
|
|
bool IsStable();
|
|
|
|
|
}
|
|
|
|
|
}
|