All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.pidoveproject.showdown.protocol.server.query.ResponseContent.scala Maven / Gradle / Ivy

The newest version!
package io.github.pidoveproject.showdown.protocol.server.query

import io.github.pidoveproject.showdown.protocol.{MessageDecoder, messageName}

/**
 * The content of a query response.
 */
enum ResponseContent derives MessageDecoder:

  /**
   * The list of battle rooms.
   */
  @messageName("roomlist") case BattleRoomList(rooms: BattleRooms)

  /**
   * The list of chat rooms.
   */
  @messageName("rooms") case ChatRoomList(rooms: ChatRooms)

  /**
   * The details of a user.
   */
  case UserDetails(details: UserInfo)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy