Beispiel #1
0
 public AIAction(ActionType actionType, Structure source, int priority)
 {
     this.aiActionType         = actionType;
     this.sourceStructure      = source;
     this.destinationStructure = null;
     this.moveToActionType     = MoveToAIActionType.None;
     this.priority             = priority;
 }
Beispiel #2
0
 public AIAction(ActionType actionType, Structure source, Structure dest, MoveToAIActionType moveToAIActionType, int priority)
 {
     this.aiActionType         = actionType;
     this.sourceStructure      = source;
     this.destinationStructure = dest;
     this.moveToActionType     = moveToAIActionType;
     this.priority             = priority;
 }