25 lines
748 B
C#
Raw Normal View History

using SharedLibraryCore.Interfaces;
namespace SharedLibraryCore.Configuration
{
public class DefaultSettings : IBaseConfiguration
{
public string[] AutoMessages { get; set; }
public string[] GlobalRules { get; set; }
public MapConfiguration[] Maps { get; set; }
2021-11-28 10:04:37 -06:00
public GametypeConfiguration[] Gametypes { get; set; }
2022-01-26 10:32:16 -06:00
public QuickMessageConfiguration[] QuickMessages { get; set; }
public string[] DisallowedClientNames { get; set; }
public GameStringConfiguration GameStrings { get; set; }
2022-01-26 10:32:16 -06:00
public IBaseConfiguration Generate()
{
return this;
}
2022-01-26 10:32:16 -06:00
public string Name()
{
return "DefaultConfiguration";
}
}
2022-01-26 10:32:16 -06:00
}