From b0a6847a2e27fbc198fea23e0c6f2f355167916a Mon Sep 17 00:00:00 2001 From: Timothy Liu Date: Sat, 9 Mar 2024 22:16:59 +0800 Subject: [PATCH] chore: use multiline sttring literal for welcome string --- logic/Server/Program.cs | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/logic/Server/Program.cs b/logic/Server/Program.cs index 43623e1e..a85fe979 100755 --- a/logic/Server/Program.cs +++ b/logic/Server/Program.cs @@ -10,11 +10,18 @@ public class Program /// Generated by http://www.network-science.de/ascii/ with font "standard" /// const string welcome = """ - _____ _ _ _ _ _ ___ _____ - |_ _| | | | | | | / \ |_ _|___ | - | | | |_| | | | |/ _ \ | | / / - | | | _ | |_| / ___ \ | | / / - |_| |_| |_|\___/_/ \_\___|/_/ + ______________ ___ ____ ___ _____ .____________ + \__ ___/ | \| | \/ _ \ | \______ \ + | | / ~ \ | / /_\ \| | / / + | | \ Y / | / | \ | / / + |____| \___|_ /|______/\____|__ /___| /____/ + \/ \/ + _________ __ __ __ + / _____// |______ _______ / \ / \_____ _______ + \_____ \\ __\__ \\_ __ \ \ \/\/ /\__ \\_ __ \ + / \| | / __ \| | \/ \ / / __ \| | \/ + /_______ /|__| (____ /__| \__/\ / (____ /__| + \/ \/ \/ \/ """; static ServerBase CreateServer(ArgumentOptions options)