mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 11:12:47 +01:00
18 lines
321 B
C#
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|