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