コード例 #1
0
ファイル: MainMenu.cs プロジェクト: Struckdown/SuperAdventure
        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();
 }