-
Notifications
You must be signed in to change notification settings - Fork 7
/
DenizenMetaBotConstants.cs
31 lines (25 loc) · 1.19 KB
/
DenizenMetaBotConstants.cs
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
using System;
using System.Collections.Generic;
using System.Text;
namespace DenizenBot
{
/// <summary>
/// Constants (links, image urls, etc).
/// Either absolute constants, or config-loaded pseudo-constants.
/// </summary>
public static class DenizenMetaBotConstants
{
/// <summary>The base for the meta docs URL.</summary>
public static string DOCS_URL_BASE = "https://meta.denizenscript.com/Docs/";
/// <summary>The base for the Clientizen meta docs URL.</summary>
public static string CLIENTDOCS_URL_BASE = "https://clientmeta.denizenscript.com/Docs/";
/// <summary>The prefix for non-ping-based command usage.</summary>
public static string COMMAND_PREFIX = "!";
/// <summary>Link to the GitHub repo for this bot.</summary>
public const string SOURCE_CODE_URL = "https://github.com/DenizenScript/DenizenMetaBot";
/// <summary>The Denizen logo.</summary>
public const string DENIZEN_LOGO = "https://i.alexgoodwin.media/i/for_real_usage/ec5694.png";
/// <summary>The base for the Jenkins CI URL.</summary>
public const string JENKINS_URL_BASE = "https://ci.citizensnpcs.co";
}
}