Merged projects with plugins and modules

This commit is contained in:
2024-07-22 01:18:00 +03:00
parent 1fd065f4c2
commit 8ace51c840
59 changed files with 1669 additions and 73 deletions

View File

@@ -0,0 +1,19 @@
using DiscordBotCore;
using DiscordBotCore.Database;
namespace LevelingSystem;
public class Settings
{
public int SecondsToWaitBetweenMessages { get; set; }
public int MinExp { get; set; }
public int MaxExp { get; set; }
}
internal static class Variables
{
internal static readonly string DataFolder = Application.GetResourceFullPath("LevelingSystem/");
internal static SqlDatabase? Database;
internal static readonly Dictionary<ulong, DateTime> WaitingList = new();
internal static Settings GlobalSettings = new();
}