Exemplo n.º 1
0
 public void Killed(Player p)
 {
     _scoreMap[p.Id] += 1;
 }
Exemplo n.º 2
0
 public Bomb(int x, int y, int power, Player owner)
     : base(x, y)
 {
     Power = power;
     Owner = owner;
 }