Ejemplo n.º 1
0
 public static StateOperationResult Push(ActionState next)
 {
     return(new StateOperationResult(ResultType.Push, next));
 }
Ejemplo n.º 2
0
 public StateOperationResult(ResultType type, ActionState next = null)
 {
     this.Type      = type;
     this.NextState = next;
 }