diff options
| author | Unknown <Alee14498@gmail.com> | 2017-09-10 15:11:42 -0400 |
|---|---|---|
| committer | Unknown <Alee14498@gmail.com> | 2017-09-10 15:11:42 -0400 |
| commit | d8944c600d168ac3da4c0acebf4eae5491038d20 (patch) | |
| tree | ae794d0c50c4482ed1df9ffb9de490f92b319f28 /AleeChat for Discord Bots/Program.cs | |
| parent | 17bea479b915dacff3b8d190a0b08f4bfb8efd82 (diff) | |
| download | AleeChat-Old-d8944c600d168ac3da4c0acebf4eae5491038d20.tar.gz AleeChat-Old-d8944c600d168ac3da4c0acebf4eae5491038d20.tar.bz2 AleeChat-Old-d8944c600d168ac3da4c0acebf4eae5491038d20.zip | |
Added project files
Diffstat (limited to 'AleeChat for Discord Bots/Program.cs')
| -rw-r--r-- | AleeChat for Discord Bots/Program.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/AleeChat for Discord Bots/Program.cs b/AleeChat for Discord Bots/Program.cs new file mode 100644 index 0000000..8f25154 --- /dev/null +++ b/AleeChat for Discord Bots/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace AleeChat_for_Discord_Bots +{ + static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new DiscordBot()); + } + } +} |
