public void DistributeLoot() { for (int i = 0; i < 3; i++) { dgh.DistributeLoot(boss); } dgh.LogEnemy(boss, true); }
public void DistributeLoot() { foreach (Enemy e in troop) { if (e != null) { dgh.DistributeLoot(e); dgh.LogEnemy(e, false); } } }