NBloodServerSupervisor/Supervisor/Packets/PlayerNames.cs
CommonLoon102 dd95382d08
remove server from the list when it quits (#1)
* remove server from the list when it quits

* remove whitespace
2020-01-25 15:13:36 +00:00

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;
}
}
}