blizzless-diiis/src/DiIiS-NA/D3-GameServer/CommandManager/CommandsConfig.cs
Lucca Faria Ferri d670871a4f Changed config files to their own name;
DrinkHealthPotion.cs configurable;
Cleanup
2023-02-06 04:08:12 -08:00

21 lines
475 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DiIiS_NA.GameServer.CommandManager
{
public sealed class CommandsConfig : DiIiS_NA.Core.Config.Config
{
public char CommandPrefix
{
get => GetString(nameof(CommandPrefix), "!")[0];
set => Set(nameof(CommandPrefix), value);
}
public static CommandsConfig Instance = new();
private CommandsConfig() : base("Commands") { }
}
}