mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 11:12:47 +01:00
15 lines
225 B
C#
15 lines
225 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Supervisor
|
|||
|
{
|
|||
|
class RemoveServer : PacketData
|
|||
|
{
|
|||
|
public RemoveServer()
|
|||
|
{
|
|||
|
IsStarted = false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|