discord-bot/Shared.cs

14 lines
363 B
C#
Raw Normal View History

2021-11-30 21:17:33 -05:00
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();
}
}