コード例 #1
0
 /// <summary>
 /// Method that sets the drawing panel's world
 /// </summary>
 /// <param name="theWorld"></param>
 public void SetWorld(World theWorld)
 {
     World = theWorld;
 }
コード例 #2
0
ファイル: GameController.cs プロジェクト: jerryidk/for_team
 public GameController()
 {
     TheWorld         = null;
     firstIntReceived = true;
     initialized      = false;
 }
コード例 #3
0
 //The constructor for the DrawingPanwl
 public DrawingPanel(World theWorld)
 {
     this.DoubleBuffered = true;
     World = theWorld;
 }