コード例 #1
0
ファイル: App.cs プロジェクト: fourtf/4Plug
        public static void SetCurrentGame(Game game)
        {
            CurrentGame = game;
            MainWindow.Layout.ClearAll();

            game.Type.InitGame();

            MainWindow.Title = WindowTitle + " - " + game.Type.LibraryName;
        }
コード例 #2
0
ファイル: GameID.cs プロジェクト: fourtf/4Plug
 public GameMenuItem(Game game)
 {
     Game = game;
 }