Package-level declarations

Types

Link copied to clipboard
data class PlayerProfile(val id: String, val name: String, val legacy: Boolean = false, val skinUrl: String?, val capeUrl: String?, val skinModel: SkinModel)

Represents a player's profile as retrieved from the Mojang session servers.

Link copied to clipboard
class PlayerProfileDeserializer : JsonDeserializer<PlayerProfile>

A custom deserializer for converting JSON data into a PlayerProfile object.

Link copied to clipboard
data class PlayerUUIDProfile(val id: String, val name: String, val legacy: Boolean = false, val demo: Boolean = false)

This data class should not be used in your app. Only for internal use.

Link copied to clipboard

Enum representing the model type of player's skin.