コード例 #1
0
 /**
  * CCTOR
  *
  **/
 public SingleMission(MathFuncionPointer mathFunctionPointer, string name)
 {
     this.name            = name;
     this.mathFunctionPtr = mathFunctionPointer;
     this.type            = "Single";
 }
コード例 #2
0
 /**
  * Add function, to allow the addition of any and all missions into the list.
  *
  **/
 public ComposedMission Add(MathFuncionPointer ptr)
 {
     this.mathFuncPtrList.Add(ptr);
     return(this);
 }