ds5678 d726eb9293 Switch back to a browser UI and remove Photino.Net
* Uses the new AssetRipper.NativeDialogs
* Reverts most of f4a466fdc201800529fe1bd1bcba5ef9cb8c9883
* Resolves #1835
* Resolves #1824
* Resolves #1812
* Resolves #1808
* Resolves #1807
2025-07-14 12:50:35 -07:00

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();
}
}