mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 12:06:37 +00:00
17 lines
277 B
C#
17 lines
277 B
C#
using System;
|
|
|
|
namespace StarWarrior
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
using (var game = new GameMain())
|
|
{
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|
|
}
|