Advertisement
Smaster7772

a new game

Mar 22nd, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.43 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace ANewLife
  8. {
  9.     class Program
  10.     {
  11.         static void Main(string[] args)
  12.         {
  13.  
  14.             // title screen
  15.             #region
  16.             Console.ForegroundColor = ConsoleColor.Blue;
  17.             Console.WriteLine(" _______    __    _  _______  _     _    ___      ___   _______  _______ ");
  18.             Console.WriteLine("|   _   |  |  |  | ||       || | _ | |  |   |    |   | |       ||       |");
  19.             Console.WriteLine("|  |_|  |  |   |_| ||    ___|| || || |  |   |    |   | |    ___||    ___|");
  20.             Console.WriteLine("|       |  |       ||   |___ |       |  |   |    |   | |   |___ |   |___ ");
  21.             Console.WriteLine("|       |  |  _    ||    ___||       |  |   |___ |   | |    ___||    ___|");
  22.             Console.WriteLine("|   _   |  | | |   ||   |___ |   _   |  |       ||   | |   |    |   |___ ");
  23.             Console.WriteLine("|__| |__|  |_|  |__||_______||__| |__|  |_______||___| |___|    |_______|");
  24.             Console.WriteLine("");
  25.             Console.WriteLine("A Smaster7772 Game");
  26.             Console.ForegroundColor = ConsoleColor.DarkMagenta;
  27.             Console.WriteLine("");
  28.             Console.WriteLine("Press any key to start an adventure");
  29.             Console.ReadKey();
  30.             Console.Clear();
  31.             #endregion
  32.  
  33.         }
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement