Terminate() protected abstract method

protected abstract Terminate ( ) : void
return void
Beispiel #1
0
 public void Remove(Goal goal)
 {
     goal.ParentGoal = null;
     goal.Terminate();
     SubGoals.Remove(goal);
 }
Beispiel #2
0
Datei: Goal.cs Projekt: rc183/igf
 public void Remove(Goal goal)
 {
     goal.ParentGoal = null;
     goal.Terminate();
     SubGoals.Remove(goal);
 }