Add project files.

This commit is contained in:
INSANEMODE
2020-11-13 04:54:46 -06:00
commit cf148bd558
6 changed files with 485 additions and 0 deletions

20
Configuration.cs Normal file
View 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";
}
}