Exemple #1
0
 public void Load(VMActionCallbackMarshal input, VMContext context)
 {
     type        = input.Type;
     Target      = context.VM.GetObjectById(input.Target);
     Interaction = input.Interaction;
     SetParam    = input.SetParam;
     StackObject = context.VM.GetObjectById(input.StackObject);
     Caller      = context.VM.GetObjectById(input.Caller);
 }
Exemple #2
0
 public VMActionCallback(VMActionCallbackMarshal input, VMContext context)
 {
     Load(input, context);
 }