Exemplo n.º 1
0
 /// <summary>
 /// Removes the temporary rocket from the environment
 /// </summary>
 void RemoveTempRocket()
 {
     tempRocket = null;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Removes the input rocket from the list
 /// </summary>
 /// <param name="r">The rocket to be removed</param>
 void RemoveRocket(Rocket r)
 {
     rockets.Remove(r);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Adds a temporary rocket into the environment
 /// </summary>
 void AddTempRocket()
 {
     tempRocket = new Rocket(this);
 }