aboutsummaryrefslogtreecommitdiff
path: root/AleeBot/Data.cs
diff options
context:
space:
mode:
authorAlee <Alee14498@gmail.com>2019-05-06 16:58:06 -0400
committerAlee <Alee14498@gmail.com>2019-05-06 16:58:06 -0400
commit414ea5e42170386d4df79db2debc493d0eb4d393 (patch)
treebefcbd3b19467c9dd98676ea350a01b1514358b5 /AleeBot/Data.cs
parent9289ab03d85f415db36242beb489bb22ee6152bf (diff)
downloadAleeBot.NET-414ea5e42170386d4df79db2debc493d0eb4d393.tar.gz
AleeBot.NET-414ea5e42170386d4df79db2debc493d0eb4d393.tar.bz2
AleeBot.NET-414ea5e42170386d4df79db2debc493d0eb4d393.zip
Added a new command and finally getting rid of the hardcoded stuff
Diffstat (limited to 'AleeBot/Data.cs')
-rw-r--r--AleeBot/Data.cs29
1 files changed, 29 insertions, 0 deletions
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 <https://www.gnu.org/licenses/>.
+ *
+ **********************************************/
+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:";
+ }
+}