12 lines
256 B
C#
12 lines
256 B
C#
namespace MafiaCommon.Packets
|
|
{
|
|
public class GameStartPacket : Packet
|
|
{
|
|
public readonly Role Role;
|
|
|
|
public GameStartPacket(Role role) : base(PacketType.GameStartPacket)
|
|
{
|
|
Role = role;
|
|
}
|
|
}
|
|
} |