using Robust.Shared.Configuration; namespace Content.Shared.CCVar; public sealed partial class CCVars { /// /// Link to Discord server to show in the launcher. /// public static readonly CVarDef InfoLinksDiscord = CVarDef.Create("infolinks.discord", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to website to show in the launcher. /// public static readonly CVarDef InfoLinksForum = CVarDef.Create("infolinks.forum", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to GitHub page to show in the launcher. /// public static readonly CVarDef InfoLinksGithub = CVarDef.Create("infolinks.github", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to website to show in the launcher. /// public static readonly CVarDef InfoLinksWebsite = CVarDef.Create("infolinks.website", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to wiki to show in the launcher. /// public static readonly CVarDef InfoLinksWiki = CVarDef.Create("infolinks.wiki", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to Patreon. Not shown in the launcher currently. /// public static readonly CVarDef InfoLinksPatreon = CVarDef.Create("infolinks.patreon", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to the bug report form. /// public static readonly CVarDef InfoLinksBugReport = CVarDef.Create("infolinks.bug_report", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to site handling ban appeals. Shown in ban disconnect messages. /// public static readonly CVarDef InfoLinksAppeal = CVarDef.Create("infolinks.appeal", "", CVar.SERVER | CVar.REPLICATED); /// /// Link to Telegram channel to show in the launcher. /// public static readonly CVarDef InfoLinksTelegram = CVarDef.Create("infolinks.telegram", "", CVar.SERVER | CVar.REPLICATED); }