All Downloads are FREE. Search and download functionalities are using the official Maven repository.

personthecat.catlib.command.HelpCommandInfo Maven / Gradle / Ivy

Go to download

Utilities for serialization, commands, noise generation, IO, and some new data types.

The newest version!
package personthecat.catlib.command;

import lombok.Value;

@Value
public class HelpCommandInfo {
    String name;
    String arguments;
    String description;
    CommandType type;

    public boolean isGlobal() {
        return this.type == CommandType.GLOBAL;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy