11 lines
409 B
C#
11 lines
409 B
C#
using MareSynchronos.MareConfiguration.Configurations;
|
|
|
|
namespace MareSynchronos.MareConfiguration;
|
|
|
|
public class PlayerPerformanceConfigService : ConfigurationServiceBase<PlayerPerformanceConfig>
|
|
{
|
|
public const string ConfigName = "playerperformance.json";
|
|
public PlayerPerformanceConfigService(string configDir) : base(configDir) { }
|
|
|
|
public override string ConfigurationName => ConfigName;
|
|
} |