public void newBattle(BattleEvent theEvent)
        {
            enemies = theEvent.getFoes();

            while (theEvent.theFight().stillFighting())
            {
                refreshEnemies();
                battleOutput.Text += theEvent.theFight().turn();
                this.Update();
                PrimaryViewForm.onUpdate();
            }
            Return.Visible = true;
            this.Update();
            this.Show();
        }