UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

16 lines (15 loc) 329 B
"use strict"; // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. Object.defineProperty(exports, "__esModule", { value: true }); class Player { id; xuid; isValid() { if (this.id === undefined) { return false; } return true; } } exports.default = Player;