public ValueDef(DefinitionManager manager, JObject src) : base(manager, src) { formatDef = JsonHelpers.FormatDef(manager, src); fixedSize = src.Value <int?>("size"); zeroSortKey = src.Value <bool>("zeroSortKey"); }
public ValueDef(ValueDef other) : base(other) { formatDef = other.formatDef; fixedSize = other.fixedSize; zeroSortKey = other.zeroSortKey; }