Skip to content

Commit

Permalink
chore: use multiline sttring literal for welcome string
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy-Liuxf authored Mar 9, 2024
1 parent a4c66e2 commit 8b69478
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions logic/Server/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,17 @@ namespace Server
{
public class Program
{
const string welcome =
@"
/// <summary>
/// Generated by http://www.network-science.de/ascii/ with font "standard"
/// </summary>
const string welcome = """
_____ _ _ _ _ _ ___ _____
|_ _| | | | | | | / \ |_ _|___ |
| | | |_| | | | |/ _ \ | | / /
| | | _ | |_| / ___ \ | | / /
|_| |_| |_|\___/_/ \_\___|/_/
";
""";

static ServerBase CreateServer(ArgumentOptions options)
{
return options.Playback ? new PlaybackServer(options) : new GameServer(options);
Expand Down

0 comments on commit 8b69478

Please sign in to comment.