1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-11 07:40:54 -05:00

Massive refactoring and rudimentary plugin support.

This commit is contained in:
Michael Snyder
2015-08-20 00:06:44 -05:00
parent d3e42541ea
commit cd85a5c384
39 changed files with 2601 additions and 999 deletions

View File

@ -14,7 +14,7 @@ namespace IW4MAdmin
None,
}
public Log(file logf, Level mode, int port)
public Log(IFile logf, Level mode, int port)
{
logFile = logf;
logMode = mode;
@ -53,7 +53,7 @@ namespace IW4MAdmin
return DateTime.Now.ToString("HH:mm:ss");
}
private file logFile;
private IFile logFile;
private Level logMode;
private int Port;
}