-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathInfo.cs
23 lines (22 loc) · 961 Bytes
/
Info.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Clippi_B
{
class Info
{
public static void Showbanner()
{
Console.WriteLine(@" .__ .__ .__ __________ ");
Console.WriteLine(@" ____ | | |__| ______ ______ |__| \______ \ ");
Console.WriteLine(@"_/ ___\ | | | | \____ \ \____ \ | | ______ | | _/");
Console.WriteLine(@"\ \___ | |__ | | | |_> > | |_> > | | /_____/ | | \");
Console.WriteLine(@" \___ > |____/ |__| | __/ | __/ |__| |______ /");
Console.WriteLine(@" \/ |__| |__| \/ ");
Console.WriteLine("");
Console.WriteLine("developed by jfmaes / @Jean_Maes_1994");
}
}
}