Ejemplo n.º 1
0
 /// <summary>
 /// Method that sets the drawing panel's world
 /// </summary>
 /// <param name="theWorld"></param>
 public void SetWorld(World theWorld)
 {
     World = theWorld;
 }
Ejemplo n.º 2
0
 public GameController()
 {
     TheWorld         = null;
     firstIntReceived = true;
     initialized      = false;
 }
Ejemplo n.º 3
0
 //The constructor for the DrawingPanwl
 public DrawingPanel(World theWorld)
 {
     this.DoubleBuffered = true;
     World = theWorld;
 }