mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
22 lines
401 B
C#
22 lines
401 B
C#
using System;
|
|
using Gui;
|
|
|
|
namespace SpaceShooter
|
|
{
|
|
/// <summary>
|
|
/// The main class.
|
|
/// </summary>
|
|
public static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
using (var game = new MainGame())
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|