This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // The "Baki Bot" Discord bot was created by Ash Wainman-Smith. Creation begun on 10/10/2017, and has been regularly updated at least once a fortnight since. | |
| using Discord; //These top two are part of the discord API and are NEEDED for the bot to work. | |
| using Discord.Commands; | |
| using System; //These are just the C# commands that the program will use. | |
| using System.Collections.Generic; //They're still pretty important, so don't delete them. | |
| using System.Linq; //Then again, you never need to edit them at all. | |
| using System.Text; |