12 lines
225 B
C#
12 lines
225 B
C#
namespace MafiaCommon.Packets
|
|
{
|
|
public class VotePacket : Packet
|
|
{
|
|
public readonly int Id;
|
|
|
|
public VotePacket(int id) : base(PacketType.Vote)
|
|
{
|
|
Id = id;
|
|
}
|
|
}
|
|
} |