Esempio n. 1
0
 NgbhValueDescriptor(string name, bool intern, NgbhValueDescriptorType type, uint guid, int valuenr, short min, short max, uint fullguid, int fullnr)
 {
     this.name     = name;
     this.guid     = guid;
     this.fullguid = fullguid;
     this.valuenr  = valuenr;
     this.fullnr   = fullnr;
     this.max      = max;
     this.min      = min;
     this.type     = type;
     this.intern   = intern;
 }
Esempio n. 2
0
 public NgbhValueDescriptor(string name, bool intern, NgbhValueDescriptorType type, uint guid, int valuenr, short min, short max) : this(name, intern, type, guid, valuenr, min, max, 0xffffffff, -1)
 {
 }
Esempio n. 3
0
 public NgbhValueDescriptor(string name, bool intern, NgbhValueDescriptorType type, uint guid, int valuenr) : this(name, intern, type, guid, valuenr, -1, -1, 0xffffffff, -1)
 {
 }