ru.whoisamyy.api.console.commands.EchoConsoleCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Geometry Dash kernel in java
package ru.whoisamyy.api.console.commands;
import ru.whoisamyy.api.console.AbstractConsoleCommand;
import ru.whoisamyy.api.plugins.annotations.ConsoleCommand;
public class EchoConsoleCommand extends AbstractConsoleCommand {
@ConsoleCommand(name = "echo", help = "returns given in argument text")
public String echo(String text) {
return text;
}
}