示例#1
0
文件: Program.cs 项目: AyyTee/Aventyr
 public static void Main(string[] args)
 {
     using (Game.Window Window = new Game.Window())
     {
         Window.controller = new Controller(Window, args);
         Window.Run(Game.Controller.StepsPerSecond, Game.Controller.DrawsPerSecond);
     }
 }
示例#2
0
 public static void Main(string[] args)
 {
     Game.Window window = new Game.Window();
 }