mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 20:17:22 +01:00
11 lines
No EOL
409 B
C#
11 lines
No EOL
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;
|
|
} |