discord-bot/Shared.cs

14 lines
363 B
C#

using System;
using Discord.WebSocket;
namespace silverworker_discord
{
public class Shared
{
public static ISocketMessageChannel botChatterChannel = null;
public static ISocketMessageChannel announcementChannel = null;
public static ISocketMessageChannel mtgChannel = null;
public static Random r = new Random();
}
}