예제 #1
0
 //Pre: None
 //Post: Draws the future range of the defense tower
 //Description: Subprogram to draw the future range of the defense tower
 public void DrawFutureRange()
 {
     //Drawing future range circle
     futureRangeCircle.Draw();
 }
예제 #2
0
 //Pre: None
 //Post: Draws the range of the defense tower
 //Description: Subprogram to draw the range of the defense tower
 public override void DrawCurrentRange()
 {
     //Drawing current range circle
     currentRangeCircle.Draw();
 }