using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TheSlimesJourney { class Program { static void Main(string[] args) { Console.Title = "The Slime's Journey"; Game.SetUI(new TextUI()); Game.StartGame(); } } }