aboutsummaryrefslogtreecommitdiff
path: root/Unicity.Game/Program.cs
blob: 479385e12eb516f936e878a154bcc65e5c0b999e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using Unicity.Engine;

namespace Unicity.Game
{
    class Program
    {
        static void Main(string[] args)
        {
            using (GameWindow gameWindow = new GameWindow(400, 400, "Render Test"))
            {
                gameWindow.Open();
            }
        }
    }
}