예제 #1
0
파일: MainWindow.cs 프로젝트: Tonaplo/RPG
        private void NewPlayer()
        {
            SupportForm sup = new SupportForm();
            sup.ShowDialog();

            CreateACharacter();
        }
예제 #2
0
파일: MainWindow.cs 프로젝트: Tonaplo/RPG
 private void btNewGame_Click(object sender, EventArgs e)
 {
     Function.SoundManager.PlayButtonSound();
     SupportForm sup = new SupportForm();
     sup.ShowDialog();
 }