11d37d4cd6
Added response to RCON command if applicable Added more maps into the map config
16 lines
310 B
C#
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; }
|
|
}
|
|
}
|