예제 #1
0
파일: Dialog.cs 프로젝트: thomaswp/StoryArc
 public Dialog(StoryGame game)
 {
     this.game = game;
     this.Name = "New Dialog";
 }
예제 #2
0
 public Dialog(StoryGame game)
 {
     this.game = game;
     this.Name = "New Dialog";
 }
예제 #3
0
 private void buttonNew_Click(object sender, EventArgs e)
 {
     StoryGame.AddDialog();
     updateDialogs();
     this.comboBoxDialog.SelectedIndex = Dialogs.Count - 1;
 }