IW4M-Admin/SharedLibrary/Miscellaneous.cs
RaidMax 11d37d4cd6 Added high ping kick functionality to Welcome Plugin
Added response to RCON command if applicable
Added more maps into the map config
2017-06-07 17:08:29 -04:00

16 lines
310 B
C#

using System;
namespace SharedLibrary
{
public class PlayerHistory
{
public PlayerHistory(DateTime w, int cNum)
{
When = w;
Players = cNum;
}
public DateTime When { get; private set; }
public int Players { get; private set; }
}
}