McGameProfile

data class McGameProfile(val id: UUID, val name: String, val properties: List<McGameProfile.Property>)

Represents a player's Minecraft game profile.

This data class stores information about a player's profile: their UUID, username, and associated properties.

Parameters

id

The unique identifier of the player.

name

The player's username.

properties

A list of properties associated with the player's profile.

Constructors

Link copied to clipboard
constructor(id: UUID, name: String, properties: List<McGameProfile.Property>)

Types

Link copied to clipboard
data class Property(val name: String, val value: String, val signature: String?)

Properties

Link copied to clipboard
val id: UUID
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int