Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 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. using System.Drawing;
  7. using System.IO;
  8. using xNet;
  9. using Newtonsoft.Json;
  10. using System.Threading;
  11. using Colorful;
  12. using Console = Colorful.Console;
  13.  
  14. namespace NiceChecker
  15. {
  16. class Checker
  17. {
  18.  
  19. static void Main(string[] args)
  20. {
  21. Console.Title = ("Nice Checker");
  22. Console.WriteAscii("Nice", Color.Red);
  23. Console.WriteAscii("Checker", Color.Aqua);
  24. Console.WriteLine(" =================================", Color.Red);
  25. Console.WriteLine("");
  26. Console.WriteLine(" Choose Options", Color.Yellow);
  27. Console.WriteLine("");
  28. Console.WriteLine(" =================================", Color.Red);
  29. Console.WriteLine("");
  30. Console.WriteLine("");
  31. Console.WriteLine("");
  32. Console.WriteLine("");
  33. Console.WriteLine("[1] Normal Mode (Check Secure and Insecure)", Color.SkyBlue);
  34. Console.WriteLine("");
  35. Console.Write("Select option: ", Color.Aqua);
  36. int i = (int)Convert.ToInt16(Colorful.Console.ReadLine());
  37. if (i != 1)
  38. {
  39. MinecraftMenu program = new MinecraftMenu();
  40. program.Main();
  41.  
  42. }
  43. }
  44.  
  45. }
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement