コード例 #1
0
ファイル: Program.cs プロジェクト: MattDrivenDev/LD27
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (LD27Game game = new LD27Game())
     {
         game.Run();
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: GarethIW/LD27
        static void Main(string[] args)
        {
            using (LD27Game game = new LD27Game())
            {
                game.Run();
            }
        }
    }
#endif
}
コード例 #3
0
ファイル: Program.cs プロジェクト: JamesHetfield/LD27
 static void Main()
 {
     game = new LD27Game();
     game.Run();
 }
コード例 #4
0
ファイル: Program.cs プロジェクト: MattDrivenDev/LD27
 static void Main()
 {
     game = new LD27Game();
     game.Run();
 }