mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 09:08:04 +03:00
55 lines
2.1 KiB
C#
55 lines
2.1 KiB
C#
using Robust.Shared.Configuration;
|
|
|
|
namespace Content.Shared.CCVar;
|
|
|
|
public sealed partial class CCVars
|
|
{
|
|
/// <summary>
|
|
/// Link to Discord server to show in the launcher.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksDiscord =
|
|
CVarDef.Create("infolinks.discord", "https://discord.com/invite/vHQtueFmgu", CVar.SERVER | CVar.REPLICATED); // WD EDIT
|
|
|
|
/// <summary>
|
|
/// Link to website to show in the launcher.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksForum =
|
|
CVarDef.Create("infolinks.forum", "https://forum.wwdp.ee/", CVar.SERVER | CVar.REPLICATED); // WD EDIT
|
|
|
|
/// <summary>
|
|
/// Link to GitHub page to show in the launcher.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksGithub =
|
|
CVarDef.Create("infolinks.github", "https://github.com/WWhiteDreamProject/wwdpublic", CVar.SERVER | CVar.REPLICATED); // WD EDIT
|
|
|
|
/// <summary>
|
|
/// Link to website to show in the launcher.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksWebsite =
|
|
CVarDef.Create("infolinks.website", "", CVar.SERVER | CVar.REPLICATED);
|
|
|
|
/// <summary>
|
|
/// Link to wiki to show in the launcher.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksWiki =
|
|
CVarDef.Create("infolinks.wiki", "https://wiki.wwdp.ee/", CVar.SERVER | CVar.REPLICATED); // WD EDIT
|
|
|
|
/// <summary>
|
|
/// Link to Patreon. Not shown in the launcher currently.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksPatreon =
|
|
CVarDef.Create("infolinks.patreon", "", CVar.SERVER | CVar.REPLICATED);
|
|
|
|
/// <summary>
|
|
/// Link to the bug report form.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksBugReport =
|
|
CVarDef.Create("infolinks.bug_report", "", CVar.SERVER | CVar.REPLICATED);
|
|
|
|
/// <summary>
|
|
/// Link to site handling ban appeals. Shown in ban disconnect messages.
|
|
/// </summary>
|
|
public static readonly CVarDef<string> InfoLinksAppeal =
|
|
CVarDef.Create("infolinks.appeal", "", CVar.SERVER | CVar.REPLICATED);
|
|
}
|