Mazetar

Program.cs

Mar 25th, 2011
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleBarovia
  7. {
  8.     class Program
  9.     {
  10.  
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             Intro intro = new Intro();
  15.             Town town = new Town();
  16.             Crossroads crossroads = new Crossroads();
  17.  
  18.             intro.StartingIntro();            // Enters the Intro Code
  19.             crossroads.setFirstTime(true);
  20.             crossroads.enteringCrossRoads(); // Starts the CrossRoads Code
  21.            
  22.  
  23.  
  24.            
  25.  
  26.  
  27.  
  28.         }
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment