mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-04 13:45:04 +08:00
10 lines
194 B
C#
10 lines
194 B
C#
|
using System;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.armature_lock
|
|||
|
{
|
|||
|
internal interface IArmatureLock : IDisposable
|
|||
|
{
|
|||
|
LockResult Execute();
|
|||
|
bool IsStable();
|
|||
|
}
|
|||
|
}
|