示例#1
0
 /*
 ====================================================================
 CCreate basic action.
 ====================================================================
 */
 public static Action CreateAction(EngineActionsTypes actionType)
 {
     Action action = new Action();
     action.type = actionType;
     return action;
 }
示例#2
0
 public static void action_queue(EngineActionsTypes actionType)
 {
     actions.Enqueue(CreateAction(actionType));
     CheckScheduler();
 }