NBloodServerSupervisor/Supervisor/Packets/RemoveServer.cs

15 lines
225 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Supervisor
{
class RemoveServer : PacketData
{
public RemoveServer()
{
IsStarted = false;
}
}
}