Ejemplo n.º 1
0
        private void picMace_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                string strNames = "";
                for (int x = 0; x < 50; x++)
                {
                    strNames += "City of " + RandomHelper.RandomFileLine("Resources\\CityStartingWords.txt") +
                                RandomHelper.RandomFileLine("Resources\\CityEndingWords.txt") + "\r\n";
                }
                MessageBox.Show(strNames);
            }
            else
            {
#if DEBUG
                MessageBox.Show(SourceWorld.ConvertToSignText("[the writing is hidden behind vines]"));
#endif
            }
        }