Esempio n. 1
0
 //Unspecialized state. Used by C#-Lua calls.
 public StackSignatureState(int offset, int length)
 {
     Type    = StackSignature.EmptyV;
     Offset  = offset;
     VLength = length;
 }
Esempio n. 2
0
 public StackSignatureState(StackSignature inputSigType, int inputVarg)
 {
     Type    = inputSigType;
     Offset  = 0;
     VLength = inputVarg;
 }