mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
22 lines
695 B
C#
22 lines
695 B
C#
namespace AssetRipper.GUI.Web;
|
|
|
|
public static class WelcomeMessage
|
|
{
|
|
private const string AsciiArt = """
|
|
_ _____ _
|
|
/\ | | | __ \(_)
|
|
/ \ ___ ___ ___| |_| |__) |_ _ __ _ __ ___ _ __
|
|
/ /\ \ / __/ __|/ _ \ __| _ /| | '_ \| '_ \ / _ \ '__|
|
|
/ ____ \\__ \__ \ __/ |_| | \ \| | |_) | |_) | __/ |
|
|
/_/ \_\___/___/\___|\__|_| \_\_| .__/| .__/ \___|_|
|
|
| | | |
|
|
|_| |_|
|
|
""";
|
|
|
|
public static void Print()
|
|
{
|
|
Console.WriteLine(AsciiArt);
|
|
Console.WriteLine();
|
|
}
|
|
}
|