Esempio n. 1
0
        public void DistributeLoot()
        {
            for (int i = 0; i < 3; i++)
            {
                dgh.DistributeLoot(boss);
            }

            dgh.LogEnemy(boss, true);
        }
Esempio n. 2
0
 public void DistributeLoot()
 {
     foreach (Enemy e in troop)
     {
         if (e != null)
         {
             dgh.DistributeLoot(e);
             dgh.LogEnemy(e, false);
         }
     }
 }