Files
Examples/C#/SimpleRocketGame-master/SimpleRocketGame/Program.cs
2018-04-20 10:15:15 +01:00

18 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SimpleRocketGame
{
class Program
{
static void Main(string[] args)
{
var UI = new UserInterface();
UI.Start();
}
}
}