Package-level declarations

Types

Link copied to clipboard

This interface represents an extension for adapters in the Scorpio API. Implementations of this interface must provide functionality for handling messages and managing the adapter's lifecycle.

Link copied to clipboard
interface Message

Represents a message in the Scorpio API. This interface defines the essential properties of a message, including sender details and content.

Link copied to clipboard
class PlatformMessage(val senderId: String, val senderName: String, val content: String, platformName: String) : Message

Represents a message sent from an external platform.

Link copied to clipboard
class PlayerMessage(val senderId: String, val senderName: String, val content: String) : Message

Represents a message sent by a player in the game.