Alexandria.Engines.UltimaUnderworld.StringPackage.Node.Node C# (CSharp) Method

Node() public method

public Node ( BinaryReader reader ) : System
reader System.IO.BinaryReader
return System
            public Node(BinaryReader reader)
            {
                Value = reader.ReadByte();
                Parent = reader.ReadByte();
                Left = reader.ReadByte();
                Right = reader.ReadByte();
                Checked = false;
            }
StringPackage.Node