MoonWorksComputeSpriteBatch/src/Program.cs

22 lines
438 B
C#
Raw Permalink Normal View History

2022-02-26 01:51:41 +00:00
using MoonWorks;
2022-01-18 04:39:23 +00:00
namespace MoonWorksComputeSpriteBatch
{
2022-02-26 01:51:41 +00:00
class Program
{
static void Main(string[] args)
{
WindowCreateInfo windowCreateInfo = new WindowCreateInfo
{
WindowTitle = "Compute Sprite Batch",
WindowWidth = 1280,
WindowHeight = 720,
ScreenMode = ScreenMode.Windowed
};
2022-01-18 04:39:23 +00:00
2022-02-26 01:51:41 +00:00
TestGame game = new TestGame(windowCreateInfo, MoonWorks.Graphics.PresentMode.FIFO, 60, true);
game.Run();
}
}
2022-01-18 04:39:23 +00:00
}