Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /** * This class is used to represent chats going to guessing chat */ class GuessMessage{ /** * * @param {String} socketID The sender's socket ID (each is unqiue) * @param {String} playerAvatar The sender's avatar * @param {AACSymbol} symbol The sender's message content * @param {String} timestamp When the message was sent */ constructor(socketID, playerAvatar, symbol, timestamp){ this.socketID = socketID; this.playerAvatar = playerAvatar; this.symbol = symbol; this.timestamp = timestamp; } } |