NBloodServerSupervisor/Supervisor/Packets/PacketData.cs

13 lines
220 B
C#
Raw Normal View History

2020-01-23 21:03:54 +01:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Supervisor
{
abstract class PacketData
{
public int Port { get; set; }
public bool IsStarted { get; set; }
}
}