From d8944c600d168ac3da4c0acebf4eae5491038d20 Mon Sep 17 00:00:00 2001 From: Unknown Date: Sun, 10 Sep 2017 15:11:42 -0400 Subject: Added project files --- AleeChat for Discord Bots/Program.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AleeChat for Discord Bots/Program.cs (limited to 'AleeChat for Discord Bots/Program.cs') 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 + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new DiscordBot()); + } + } +} -- cgit v1.2.3