VRCMelonAssistant/ModAssistant/Classes/Promotions.cs
2020-11-16 13:22:30 +00:00

23 lines
447 B
C#

namespace ModAssistant
{
class Promotions
{
public static Promotion[] ActivePromotions =
{
new Promotion
{
ModName = "YUR Fit Calorie Tracker",
Text = "Join our Discord!",
Link = "https://yur.chat"
}
};
}
class Promotion
{
public string ModName;
public string Text;
public string Link;
}
}