Interface SayPacket

Basic chat-type packet which sends text to the server to be distributed to other clients.

interface SayPacket {
    cmd: "Say";
    text: string;
}

Properties

Properties

cmd
text: string

Text to send to others.