mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
* Uses the new AssetRipper.NativeDialogs * Reverts most of f4a466fdc201800529fe1bd1bcba5ef9cb8c9883 * Resolves #1835 * Resolves #1824 * Resolves #1812 * Resolves #1808 * Resolves #1807
29 lines
949 B
C#
29 lines
949 B
C#
namespace AssetRipper.GUI.Web;
|
|
|
|
public static class WelcomeMessage
|
|
{
|
|
private const string AsciiArt = """
|
|
_ _____ _
|
|
/\ | | | __ \(_)
|
|
/ \ ___ ___ ___| |_| |__) |_ _ __ _ __ ___ _ __
|
|
/ /\ \ / __/ __|/ _ \ __| _ /| | '_ \| '_ \ / _ \ '__|
|
|
/ ____ \\__ \__ \ __/ |_| | \ \| | |_) | |_) | __/ |
|
|
/_/ \_\___/___/\___|\__|_| \_\_| .__/| .__/ \___|_|
|
|
| | | |
|
|
|_| |_|
|
|
""";
|
|
|
|
private const string Directions = """
|
|
In a moment, a line will appear: "Now listening on:" followed by a url.
|
|
Open that url in any web browser to access the AssetRipper user interface.
|
|
""";
|
|
|
|
public static void Print()
|
|
{
|
|
Console.WriteLine(AsciiArt);
|
|
Console.WriteLine();
|
|
Console.WriteLine(Directions);
|
|
Console.WriteLine();
|
|
}
|
|
}
|