public Glb(GlbChunk json, GlbChunk binary) { if (json.ChunkType != GlbChunkType.JSON) { throw new ArgumentException(); } Json = json; if (binary.ChunkType != GlbChunkType.BIN) { throw new ArgumentException(); } Binary = binary; }
public Glb(string json, ArraySegment <byte> body) { Json = new GlbChunk(json); Binary = new GlbChunk(body); }