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

ru.cwcode.commands.paperplatform.paper.PaperCommand Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
package ru.cwcode.commands.paperplatform.paper;

import ru.cwcode.commands.Command;

public class PaperCommand {
  PaperTabCompleter tabCompleter;
  PaperCommandParser commandParser;
  
  public PaperCommand(Command command) {
    tabCompleter = new PaperTabCompleter(command);
    commandParser = new PaperCommandParser(command);
  }
  
  public PaperTabCompleter getTabCompleter() {
    return tabCompleter;
  }
  
  public PaperCommandParser getCommandParser() {
    return commandParser;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy