VRCMelonAssistant/VRCMelonAssistant/Classes/Promotions.cs

23 lines
450 B
C#
Raw Normal View History

namespace VRCMelonAssistant
2019-06-19 08:59:16 +12:00
{
class Promotions
{
public static Promotion[] ActivePromotions =
{
new Promotion
{
ModName = "emmVRCLoader",
2019-06-19 08:59:16 +12:00
Text = "Join our Discord!",
Link = "https://discord.gg/emmvrc"
2019-06-19 08:59:16 +12:00
}
};
}
class Promotion
{
public string ModName;
public string Text;
public string Link;
}
}