From 414ea5e42170386d4df79db2debc493d0eb4d393 Mon Sep 17 00:00:00 2001 From: Alee Date: Mon, 6 May 2019 16:58:06 -0400 Subject: Added a new command and finally getting rid of the hardcoded stuff --- AleeBot/Data.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 AleeBot/Data.cs (limited to 'AleeBot/Data.cs') diff --git a/AleeBot/Data.cs b/AleeBot/Data.cs new file mode 100644 index 0000000..0f1ab10 --- /dev/null +++ b/AleeBot/Data.cs @@ -0,0 +1,29 @@ +/******************************************* + * + * AleeBot.NET: A Discord bot that's made in Discord.NET, .NET Core 3.0 and a revival. + * Copyright (C) 2019 AleeCorp + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + **********************************************/ +namespace AleeBot +{ + public class Data + { + //This will be storing public variables such as versions and stuff. + + public static string Version = "3.0 Beta 1"; + public static string prefix = "ab:"; + } +} -- cgit v1.2.3