Esempio n. 1
0
        static void Main()
        {
            var test = new LoadingService();

            Application.SetHighDpiMode(HighDpiMode.SystemAware);
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
Esempio n. 2
0
File: Game.cs Progetto: Boekind/RPG
 public Game()
 {
     LoadServ = new LoadingService();
     shop     = new Shop(LoadServ.ShopItems);
 }