mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 03:02:51 +01:00
dd95382d08
* remove server from the list when it quits * remove whitespace
17 lines
272 B
C#
17 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Supervisor
|
|
{
|
|
class PlayerNames : PacketData
|
|
{
|
|
public IList<string> Names { get; set; }
|
|
|
|
public PlayerNames()
|
|
{
|
|
IsStarted = true;
|
|
}
|
|
}
|
|
}
|