16 lines
298 B
C#
16 lines
298 B
C#
|
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|