12 lines
218 B
C#
12 lines
218 B
C#
namespace MafiaCommon.Packets
|
|
{
|
|
public class Packet
|
|
{
|
|
public readonly PacketType PacketType;
|
|
|
|
public Packet(PacketType type)
|
|
{
|
|
PacketType = type;
|
|
}
|
|
}
|
|
} |