private async void ContentDialog_PrimaryButtonClick(ContentDialog sender, ContentDialogButtonClickEventArgs args) { BattleSimulator sim = new BattleSimulator(); this.Hide(); await sim.RandomBattle(); }
private async void DoBattle_Pressed(object sender, RoutedEventArgs e) { BattleSimulator sim = new BattleSimulator(); await sim.RandomBattle(); }