未実装であることが分かるように修正

This commit is contained in:
ousttrue 2022-07-11 20:28:12 +09:00
parent 05d7c1d8ea
commit 9589cb145f

View File

@ -7,7 +7,10 @@ namespace UniGLTF
{
public NullableSerialization(Type t, string path, JsonSchemaAttribute attr, string prefix)
{
if (t != typeof(int))
{
throw new NotImplementedException();
}
}
public Type ValueType => typeof(Int32);