コード例 #1
0
ファイル: Program.cs プロジェクト: Jamesc554/ConsoleRPG
 public Game()
 {
     instance = this;
     currentLocation = new Town("<NAME>", false);
     Start();
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: Jamesc554/ConsoleRPG
 static void Main(string[] args)
 {
     Game game = new Game();
 }