Exemplo n.º 1
0
 public Dialog(StoryGame game)
 {
     this.game = game;
     this.Name = "New Dialog";
 }
Exemplo n.º 2
0
 public Dialog(StoryGame game)
 {
     this.game = game;
     this.Name = "New Dialog";
 }
Exemplo n.º 3
0
 private void buttonNew_Click(object sender, EventArgs e)
 {
     StoryGame.AddDialog();
     updateDialogs();
     this.comboBoxDialog.SelectedIndex = Dialogs.Count - 1;
 }