using MoonWorks; namespace MoonWorksComputeSpriteBatch { class Program { static void Main(string[] args) { WindowCreateInfo windowCreateInfo = new WindowCreateInfo { WindowTitle = "Compute Sprite Batch", WindowWidth = 1280, WindowHeight = 720, ScreenMode = ScreenMode.Windowed }; TestGame game = new TestGame(windowCreateInfo, MoonWorks.Graphics.PresentMode.FIFO, 60, true); game.Run(); } } }