Exemplo n.º 1
0
 public MetaValueGuess(int offset, MetaValueType type, uint pointer, uint data1)
 {
     Offset = offset;
     Type = type;
     Pointer = pointer;
     Data1 = data1;
 }
Exemplo n.º 2
0
 public MetaValueGuess(int offset, MetaValueType type, long pointer, uint data1)
 {
     Offset  = offset;
     Type    = type;
     Pointer = pointer;
     Data1   = data1;
 }
Exemplo n.º 3
0
 private FieldDefinition(string fieldType, MetaValueType valueType, int size, int components, AxesDefinition axes, bool hidden)
 {
     FieldTypeName = fieldType;
     ValueType     = valueType;
     Size          = size;
     Components    = components;
     Axes          = AxesDefinition.None;
     Hidden        = hidden;
 }