438718507b
removed WebfrontSettings IW4MAdminSettings are only generated when the file does not exist, placeholder values stored in DefaultSettings.json
20 lines
553 B
C#
20 lines
553 B
C#
using SharedLibraryCore.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Configuration
|
|
{
|
|
public class DefaultConfiguration : IBaseConfiguration
|
|
{
|
|
public int AutoMessagePeriod { get; set; }
|
|
public List<string> AutoMessages { get; set; }
|
|
public List<string> GlobalRules { get; set; }
|
|
public List<MapConfiguration> Maps { get; set; }
|
|
|
|
public IBaseConfiguration Generate() => this;
|
|
|
|
public string Name() => "DefaultConfiguration";
|
|
}
|
|
}
|