示例#1
0
 //CTOR of SingleMission - get function and name of the mission
 public SingleMission(functionWhatToDo func, String mission)
 {
     name     = mission;
     nameFunc = func;
     Type     = "Single ";
 }
示例#2
0
 //add the function to the list
 public ComposedMission Add(functionWhatToDo func)
 {
     allTheFunction.Add(func);
     return(this);
 }