Update ZNI Library

This commit is contained in:
Tara 2022-12-31 13:11:13 -07:00
parent 0638f7e642
commit eeadcb1959
10 changed files with 753 additions and 388 deletions

View file

@ -182,6 +182,15 @@ namespace LibZNI.Serialization.ZNIFile
case TagType.STRING:
_next = new StringTag();
break;
case TagType.BYTEARRAY:
_next = new ByteArrayTag();
break;
case TagType.INTARRAY:
_next = new IntArrayTag();
break;
case TagType.LONGARRAY:
_next = new LongArrayTag();
break;
case TagType.END:
return true;
}