com.cryptomorin.xseries.profiles.mojang.PlayerProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of XSeries Show documentation
Show all versions of XSeries Show documentation
A set of utilities for Minecraft plugins
package com.cryptomorin.xseries.profiles.mojang;
import com.mojang.authlib.GameProfile;
import org.jetbrains.annotations.ApiStatus;
import java.util.List;
import java.util.UUID;
@ApiStatus.Internal
final class PlayerProfile {
public final UUID realUUID;
public final GameProfile requestedGameProfile, fetchedGameProfile;
public final List profileActions;
PlayerProfile(UUID realUUID, GameProfile requestedGameProfile,
GameProfile fetchedGameProfile, List profileActions) {
this.realUUID = realUUID;
this.requestedGameProfile = requestedGameProfile;
this.fetchedGameProfile = fetchedGameProfile;
this.profileActions = profileActions;
}
boolean exists() {
return fetchedGameProfile != null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy