コード例 #1
0
ファイル: Main.cs プロジェクト: smallswan399/SomeCardGames
 /// <summary>
 /// Called by the form, to do some start up stuff.
 /// </summary>
 public void Startup()
 {
     try
     {
         Filing.DoMaintinence();
         LoadedCardResources.LoadResources();
         this.SetupForm();
         VariableStorage.TheForm.Text = VariableStorage.GetRandomTitle();
     }
     catch (Exception TheException)
     {
         ErrorReporter.Report(TheException);
     }
 }