TigerEmu/Game/Settings/ISettingManager.cs

7 lines
133 B
C#
Raw Normal View History

2023-09-23 11:11:07 +00:00
namespace Tiger.Game.Settings;
2023-09-23 12:20:45 +00:00
public interface ISettingManager
2023-09-23 11:11:07 +00:00
{
Task ReloadSettingsAsync();
T GetSetting<T>(string key);
}