using System.IO; using System.Collections.Generic; namespace UniGLTF.JsonSchema.Schemas { public class TraverseContext { public readonly TextWriter Writer; public readonly HashSet Used = new HashSet(); public TraverseContext(TextWriter writer) { Writer = writer; } public void Write(string s) { Writer.Write(s); } } }