This repository has been archived on 2025-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-17 22:47:37 +03:00

12 lines
218 B
C#

namespace MafiaCommon.Packets
{
public class Packet
{
public readonly PacketType PacketType;
public Packet(PacketType type)
{
PacketType = type;
}
}
}