17 lines
268 B
C#
17 lines
268 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SimpleModernUI
|
|||
|
{
|
|||
|
static class Program
|
|||
|
{
|
|||
|
[STAThread]
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
using (Game1 game = new Game1())
|
|||
|
{
|
|||
|
game.Run();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|