public static void Main(string[] args) { int xRes = Console.WindowWidth - 1; int yRes = Console.WindowHeight - 1; Engine.Game g = new Engine.Game(new Vector2(xRes, yRes), ' ', 10); g.StartGame(); Console.SetCursorPosition(xRes, 0); Console.WriteLine("Good Bye!"); }