summaryrefslogtreecommitdiff
path: root/Program.cs
blob: 665254f4d54cbfbb5f2b7d945033d5f5431e5789 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Celesteia
{
    public static class Program
    {
        [STAThread]
        static void Main()
        {
            using (var game = new GameInstance())
                game.Run();
        }
    }
}