holopy3/Assets/UniGLTF/UniJSON/Scripts/IValueNode.cs

15 lines
239 B
C#
Raw Normal View History

2021-01-28 12:07:52 +00:00
namespace UniJSON
{
public interface IValueNode
{
bool IsNull { get; }
bool IsArray { get; }
bool IsMap { get; }
int Count { get; }
object GetValue();
bool GetBoolean();
}
}