diff --git a/logic/Server/Program.cs b/logic/Server/Program.cs index 1d25457f..43623e1e 100755 --- a/logic/Server/Program.cs +++ b/logic/Server/Program.cs @@ -6,14 +6,17 @@ namespace Server { public class Program { - const string welcome = - @" + /// + /// Generated by http://www.network-science.de/ascii/ with font "standard" + /// + const string welcome = """ _____ _ _ _ _ _ ___ _____ |_ _| | | | | | | / \ |_ _|___ | | | | |_| | | | |/ _ \ | | / / | | | _ | |_| / ___ \ | | / / |_| |_| |_|\___/_/ \_\___|/_/ - "; + """; + static ServerBase CreateServer(ArgumentOptions options) { return options.Playback ? new PlaybackServer(options) : new GameServer(options);