Example #1
0
 public ParamClass(int pIndex, int opIndex, DXTypeVals pType, ParamCats pcat)
 {
     paramIndex = pIndex;
     oldParamIndex = opIndex;
     paramType = pType;
     category = pcat;
 }
Example #2
0
 public ParamClass(int pIndex, int opIndex, DXTypeVals pType)
 {
     paramIndex = pIndex;
     oldParamIndex = opIndex;
     paramType = pType;
     category = ParamCats.unknown;
 }