Update README.md to include project description, developer documentation links, and license information.
CI / build-test (push) Successful in 1m6s

This commit is contained in:
Leonid Pershin
2026-06-11 04:03:07 +03:00
parent 31aba3aeee
commit ff2231a8ab
72 changed files with 4113 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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();