IW4M-Admin/SharedLibraryCore/Configuration/DefaultSettings.cs

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 11:04:37 -05:00
public GametypeConfiguration[] Gametypes { get; set; }
2022-01-26 11:32:16 -05:00
public QuickMessageConfiguration[] QuickMessages { get; set; }
public string[] DisallowedClientNames { get; set; }
public GameStringConfiguration GameStrings { get; set; }
2022-01-26 11:32:16 -05:00
public IBaseConfiguration Generate()
{
return this;
}
2022-01-26 11:32:16 -05:00
public string Name()
{
return "DefaultConfiguration";
}
}
2022-01-26 11:32:16 -05:00
}