Esempio n. 1
0
 public GC_Object(string Name, Game game)
 {
     if (game == null)
         throw new ArgumentNullException("game");
     _Game = game;
     _Name = Name;
 }
Esempio n. 2
0
 public GC_Class(string Name, Game game)
 {
     //Was rechanged to this.Name due to JBou's ordinance.
     if (game == null)
         throw new ArgumentNullException("game");
     _Game = game;
     this.Name = Name;
 }
Esempio n. 3
0
 public GC_Level(string Name, Game game)
 {
     _Game = game;
     this.Name = Name;
     this.Width = 500;
     this.Height = 500;
     this.BackgroundImageLayout = "None";
 }
Esempio n. 4
0
 public GC_Image(string Name, Game game)
 {
     _Game = game;
     this.Name = Name;
 }