SHOW:
|
|
- or go back to the newest paste.
| 1 | using System; | |
| 2 | using System.Collections.Generic; | |
| 3 | using System.Linq; | |
| 4 | using System.Diagnostics; | |
| 5 | using System.Text; | |
| 6 | ||
| 7 | namespace GameSeeker | |
| 8 | {
| |
| 9 | class Program | |
| 10 | {
| |
| 11 | ||
| 12 | static void Main(string[] args) | |
| 13 | {
| |
| 14 | ||
| 15 | Intro(); | |
| 16 | ||
| 17 | } | |
| 18 | static void Intro() | |
| 19 | {
| |
| 20 | Console.Clear(); | |
| 21 | Console.SetWindowSize(155, 30); | |
| 22 | Console.WriteLine("");
| |
| 23 | Console.WriteLine("");
| |
| 24 | Console.WriteLine("");
| |
| 25 | Console.WriteLine(" Wanna play??");
| |
| 26 | Console.WriteLine(" Yes / No");
| |
| 27 | Console.WriteLine("");
| |
| 28 | Console.WriteLine("");
| |
| 29 | Console.Write(" ");
| |
| 30 | string Answer = Console.ReadLine(); | |
| 31 | string RTAnswer = "Yes"; | |
| 32 | string WROAnswer = "No"; | |
| 33 | if (Answer == RTAnswer) | |
| 34 | {
| |
| 35 | Console.Clear(); | |
| 36 | Console.WriteLine(); | |
| 37 | Console.WriteLine(); | |
| 38 | Console.WriteLine(); | |
| 39 | Console.WriteLine(" Good, Check your desktop. You've got a gift!");
| |
| 40 | Console.ReadLine(); | |
| 41 | } | |
| 42 | ||
| 43 | if (Answer == WROAnswer) | |
| 44 | {
| |
| 45 | Console.WriteLine("Fuck you!");
| |
| 46 | Console.ReadLine(); | |
| 47 | } | |
| 48 | } | |
| 49 | } | |
| 50 | } |