NBloodServerSupervisor/Supervisor/PlayerCounts.cs
2020-01-23 21:03:54 +01:00

18 lines
321 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Supervisor
{
class PlayerCounts : PacketData
{
public int CurrentPlayers { get; set; }
public int MaximumPlayers { get; set; }
public PlayerCounts()
{
IsStarted = true;
}
}
}