-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLoaderMessages.cs
More file actions
48 lines (37 loc) · 1.32 KB
/
LoaderMessages.cs
File metadata and controls
48 lines (37 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// -----------------------------------------------------------------------
// <copyright file="LoaderMessages.cs" company="MySCPStats">
// Copyright (c) joseph_fallen. All rights reserved.
// Licensed under the CC BY-SA 3.0 license.
// </copyright>
// -----------------------------------------------------------------------
using System;
namespace MySCPStats.Loader
{
public static class LoaderMessages
{
/// <summary>
/// Gets the default loader message.
/// </summary>
public static string Default => @"
/$$ /$$ /$$$$$$ /$$$$$$
| $$$ /$$$ /$$__ $$ /$$__ $$
| $$$$ /$$$$| $$ \__/| $$ \__/
| $$ $$/$$ $$| $$$$$$ | $$$$$$ MySCPStats by joseph_fallen
| $$ $$$| $$ \____ $$ \____ $$
| $$\ $ | $$ /$$ \ $$ /$$ \ $$
| $$ \/ | $$| $$$$$$/| $$$$$$/
|__/ |__/ \______/ \______/
";
/// <summary>
/// Gets the loader message according to the current month and flags.
/// </summary>
/// <returns>The corresponding loader message.</returns>
public static string GetMessage()
{
var args = Environment.GetCommandLineArgs();
if (args.Contains("--defaultloadmessage"))
return Default;
return Default;
}
}
}