Exemplo n.º 1
0
 public Weapon(Game game, Point location)
     : base(game, location)
 {
     this.game = game;
     this.location = location;
     pickedUp = false;
 }
Exemplo n.º 2
0
 public Bow(Game game, Point location)
     : base(game, location)
 {
 }
Exemplo n.º 3
0
 private void Form1_Load(object sender, EventArgs e)
 {
     game = new Game(new Rectangle(78, 57, 420, 155));
     game.NewLevel(random);
     UpdateCharacters();
 }
Exemplo n.º 4
0
 public Ghost(Game game, Point location)
     : base(game, location, 8)
 { }
Exemplo n.º 5
0
 public Mover(Game game, Point location)
 {
     this.game = game;
     this.location = location;
 }
Exemplo n.º 6
0
 public Weapon(Game game, Point location)
     : base(game, location)
 {
     pickedUp = false;
 }
Exemplo n.º 7
0
 public RedPotion(Game game, Point location)
     : base(game, location)
 {
     Used = false;
 }
Exemplo n.º 8
0
 public Ghoul(Game game, Point location)
     : base(game, location, 10)
 {
 }
Exemplo n.º 9
0
 public Sword(Game game, Point location)
 : base(game, location) { }
Exemplo n.º 10
0
 public Enemy(Game game, Point location, int hitPoints)
     : base(game, location) { this.hitPoints = hitPoints; }
Exemplo n.º 11
0
 public Player(Game game, Point location)
     : base(game, location)
 {
     HitPoints = 10;
 }
Exemplo n.º 12
0
 public Mace(Game game, Point location)
     : base(game, location)
 {
 }
Exemplo n.º 13
0
 public BluePotion(Game game, Point location)
     : base(game, location)
 {
 }
Exemplo n.º 14
0
 public RedPotion(Game game, Point location)
     : base(game, location)
 {
 }
Exemplo n.º 15
0
 public Bat(Game game, Point location)
     : base(game, location, 6)
 {
 }