Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace ConsoleBarovia
- {
- class Program
- {
- static void Main(string[] args)
- {
- Intro intro = new Intro();
- Town town = new Town();
- Crossroads crossroads = new Crossroads();
- intro.StartingIntro(); // Enters the Intro Code
- crossroads.setFirstTime(true);
- crossroads.enteringCrossRoads(); // Starts the CrossRoads Code
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment