Esempio n. 1
0
 public Map2(Game game, int width, int height)
     : base(game)
 {
     GameObjects = new List<GameObject>();
     Width = width;
     Height = height;
 }
Esempio n. 2
0
 public Creature(Game game)
     : base(game)
 {
 }
 public DrawableGameObject(Game game)
     : base(game)
 {
     IsVisible = true;
     Color = ConsoleColor.White;
 }
Esempio n. 4
0
 public Map2(Game game)
     : this(game, 10, 10)
 {
 }
Esempio n. 5
0
 public Map(Game game, int x, int y)
     : base(game)
 {
     _map = new List<GameObject>[x, y];
 }