예제 #1
0
 /*
  * the fucntion adding a function to the mission list function
  * @param FunctionsContainer.FunctionDelagte newFunction - delegate function
  * return the composed mission with the update list of functions
  */
 public ComposedMission Add(FunctionsContainer.FunctionDelagte newFunction)
 {
     _functionList.Add(newFunction);
     return(this);
 }
예제 #2
0
 public SingleMission(FunctionsContainer.FunctionDelagte inputFunction, string missionName)
 {
     Name    = missionName;
     _myFunc = inputFunction;
 }