Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.84 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Aegis
  4. {
  5.     static class App
  6.     {
  7.         /// <summary>
  8.         ///   Application main method.
  9.         /// </summary>
  10.         static void Main()
  11.         {
  12.             Initialize();
  13.             Config.LoadFile();
  14.             Console.ReadLine();
  15.         }
  16.  
  17.         /// <summary>
  18.         ///   Initialize the application console.
  19.         /// </summary>
  20.         static void Initialize()
  21.         {
  22.             Console.Title = $"Aegis | {Info.Version()} | ZiN";
  23.             Console.CursorVisible = false;
  24.  
  25.             FluentConsole
  26.                 .DarkGreen
  27.                 .Line(@"        ___              _     ")
  28.                 .Line(@"       /   | ___  ____ _(_)____")
  29.                 .Line(@"      / /| |/ _ \/ __ `/ / ___/")
  30.                 .Line(@"     / ___ /  __/ /_/ / (__  ) ")
  31.                 .Line(@"    /_/  |_\___/\__, /_/____/  ")
  32.                 .Text(@"               /____/")
  33.                 .Green
  34.                 .Text(" [")
  35.                 .White
  36.                 .Text($"{Info.Version()}")
  37.                 .Green
  38.                 .Text("]")
  39.                 .NewLine().NewLine();
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement