Skip to content
This repository was archived by the owner on Feb 4, 2025. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Doc Package

Flexible runtime documentation for any bot's commands. With the CommandDoc system, any bot can have organized, formatted, and detailed documentation of it's functions.

@CommandInfo
(
    name = {"mycommand", "coolcommand"},
    description = "Use this command if you are cool! B)",
    requirements = {"You must be cool."}
)
@Error("You are not cool enough to use this command :(")
public class MyCommand
{
    // ...
}