private void simpleSeedGeneratorToolStripMenuItem_Click(object sender, EventArgs e) { var platinumSeed = new SeedFinder(3, 4); if (platinumSeed.ShowDialog() == DialogResult.OK) { textBoxSeed.Text = platinumSeed.ReturnSeed.ToString("X"); } }
private void findSeedByStatsToolStripMenuItem_Click(object sender, EventArgs e) { var platinumSeed = new SeedFinder(1, 4); if (platinumSeed.ShowDialog() == DialogResult.OK) { textBoxSeed.Text = platinumSeed.ReturnSeed.ToString("X"); } }