CreateGameNotification

data class CreateGameNotification(var messageNumber: Int, val username: String, val romName: String, val clientType: String, val gameId: Int, val val1: Int) : CreateGame, ServerMessage

Server message indicating that a new game has been created.

This message shares a message type with CreateGameRequest: 0x0A.

Constructors

Link copied to clipboard
constructor(messageNumber: Int, username: String, romName: String, clientType: String, gameId: Int, val1: Int)

Properties

Link copied to clipboard
open override val bodyBytes: Int

Number of bytes the body of the message takes up (excluding the message ID byte).

Link copied to clipboard
open override val bodyBytesPlusMessageIdType: Int

The total number of bytes the message takes up, including the message ID byte.

Link copied to clipboard
Link copied to clipboard
val gameId: Int
Link copied to clipboard
open override var messageNumber: Int

The 0-based enumeration indicating the order in which this message was sent/received for each server.

Link copied to clipboard
open override val messageTypeId: Byte
Link copied to clipboard
open override val romName: String
Link copied to clipboard
Link copied to clipboard
val val1: Int

Functions

Link copied to clipboard
open override fun writeBodyTo(buffer: ByteBuf)
open override fun writeBodyTo(buffer: ByteBuffer)
Link copied to clipboard
open override fun writeTo(buffer: ByteBuf)
fun writeTo(buffer: ByteBuffer)