Files
mrgameeng/samples/MrGameEng.Sample/Program.cs
T

16 lines
312 B
C#

using Microsoft.Xna.Framework;
using MrGameEng.Core;
using MrGameEng.Sample.Scenes;
using var host = new GameHost(
new GameHostOptions
{
Title = "MrGameEng Sample",
Width = 1280,
Height = 720,
ClearColor = new Color(24, 26, 32),
},
new MainScene());
host.Run();