Skip to content
This repository has been archived by the owner on Jan 25, 2022. It is now read-only.

コマンドの登録方法

Propromp edited this page Aug 24, 2021 · 2 revisions

コマンドの登録

クラスを作成(このページを参考にしてください。)

@CommandName("example")//コマンドの名前
public class ExampleCommand {
  ...
}

マネージャーに登録

CommandManager commandManager = new CommandManager(this);
AnnotationManager annotationManager = new AnnotationManager(commandManager);
annotationManager.register(ExampleCommand.class);
Clone this wiki locally