experiments-monogame/UPWG/Manhattan/Program.cs

16 lines
298 B
C#
Raw Normal View History

2024-09-06 23:47:51 +00:00
using System;
using Elite;
using Microsoft.Xna.Framework;
namespace Manhattan
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new ManhattanGame(1280, 720, Color.Bisque))
game.Run();
}
}
}