public void Teleport(Hero hero, Monster monster) { monster.setLocation(hero.getLocation()); }
public Boss() { boss = new Monster(); }
public void Add(Monster monster) { monsters.Insert(index, monster); index += 1; }
public void Add(Monster monster) { minions.Add(monster); iterator = new MonsterIterator(minions); }