Files
AR-Menu/Library/PackageCache/org.khronos.unitygltf@6b55d14e19c1/Runtime/Scripts/JsonPointer/IJsonPointerResolver.cs
2025-11-30 08:35:03 +02:00

8 lines
135 B
C#

namespace UnityGLTF.JsonPointer
{
public interface IJsonPointerResolver
{
bool TryResolve(object target, ref string path);
}
}