Add project files.
This commit is contained in:
20
Configuration.cs
Normal file
20
Configuration.cs
Normal file
@ -0,0 +1,20 @@
|
||||
|
||||
using SharedLibraryCore.Interfaces;
|
||||
|
||||
namespace ClanTagRankApi
|
||||
{
|
||||
internal class Configuration : IBaseConfiguration
|
||||
{
|
||||
internal const string _name = "IW4MAdmin";
|
||||
|
||||
public int RestartTimerLength { get; set; }
|
||||
|
||||
public IBaseConfiguration Generate()
|
||||
{
|
||||
//this.RestartTimerLength = Utilities.PromptInt("How long in seconds until a server is killed after it is empty?", (string)null, 60, 86400, new int?(43200));
|
||||
return (IBaseConfiguration)this;
|
||||
}
|
||||
|
||||
string IBaseConfiguration.Name() => "ClanTagRankApi";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user