Skip to content

UUID Argument

Must be a valid UUID, which it returns. Example:

Java
new StellarCommand("uuid")
    .addUUIDArgument("uuid")
    .addExecution<Player>(Player.class, context -> {
        UUID uuid = getArgument<UUID>("uuid");
        currentUUID = uuid; // separate variable
    };

UUID Argument

Released under the MIT License.