public override void ReadStream(Stream s) { listtagtype = NbtReader.TagType(s); Int32 size = NbtReader.TagInt(s); for (int idx = 0; idx < size; idx++) { NbtBase n = createtag(listtagtype); n.ReadStream(s); tagvalue.Add(n); } }
public override void ReadStream(Stream s) { tagvalue = NbtReader.TagInt(s); }