VRCMelonAssistant/ModAssistant/Classes/Promotions.cs

25 lines
462 B
C#
Raw Normal View History

2020-02-26 22:27:39 +13:00
using System;
2019-06-19 08:59:16 +12:00
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;
}
}