holopy3/Assets/UniGLTF/UniJSON/Scripts/IValueNode.cs
Lena Biresch 490ef558ef CleanUp
2021-01-28 13:07:52 +01:00

14 lines
239 B
C#

namespace UniJSON
{
public interface IValueNode
{
bool IsNull { get; }
bool IsArray { get; }
bool IsMap { get; }
int Count { get; }
object GetValue();
bool GetBoolean();
}
}