Jeremy Pritts ab4c37f68b Replace Electron with a web UI and enable NativeAOT
* Resolves #1123
* Resolves #1097
* Related: #922
2023-12-13 12:25:16 -05: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();
}
}