示例#1
0
        private void btnLoadGame_Click(object sender, EventArgs e)
        {
            SuperAdventure superAdventure = new SuperAdventure(false);

            superAdventure.StartPosition = FormStartPosition.CenterParent;
            superAdventure.ShowDialog(this);
            Close();
        }
示例#2
0
 public CharacterStatistics(SuperAdventure superAdventure)
 {
     InitializeComponent();
     _superAdventure = superAdventure;
     UpdateEquipmentListInUI();
 }
示例#3
0
 public DialogScreen(SuperAdventure parent, GameState state)
 {
     _parent = parent;
     _state  = state;
     InitializeComponent();
 }