This is the main type for your game
Inheritance: Microsoft.Xna.Framework.Game
コード例 #1
0
ファイル: Program.cs プロジェクト: EmptyKeys/UI_Examples
        static void Main()
        {
            ServiceManager.Instance.AddService<IClipboardService>(new ClipboardService());

            using (var game = new Game1())
                game.Run();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Mike-EEE/UI_Examples
 static void Main()
 {
     using (var game = new Game1())
         game.Run();
 }