16 lines
258 B
C#
16 lines
258 B
C#
using DangerousD.GameCore;
|
|
using System;
|
|
|
|
namespace DangerousD
|
|
{
|
|
public static class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
using (var game = new AppManager())
|
|
game.Run();
|
|
|
|
}
|
|
}
|
|
}
|