Guest User

Untitled

a guest
Jun 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace AIYou
  7. {
  8.     static class Game
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.  
  13.             //Change when we want to exit the game.
  14.             bool quit = false;
  15.  
  16.             //Only needs to be ran once.
  17.             GameManager.welcomeScreen();
  18.  
  19.                 while(!quit)
  20.                 {
  21.  
  22.                     TextManager.Display();
  23.                 }
  24.         }
  25.     }
  26. }
Add Comment
Please, Sign In to add comment