CTCV2/app/src/main/java/cutthecord/commands/commands/CmdMe.java

22 lines
415 B
Java

package cutthecord.commands.commands;
import cutthecord.commands.CommandHandler;
import lanchon.dexpatcher.annotation.DexAdd;
@DexAdd
public class CmdMe extends CommandHandler.Command {
@DexAdd
@Override
public String handleCommand(String msg) {
return "*" + msg + "*";
}
@DexAdd
@Override
public String getPopupInfo() {
return "Display text with emphasis";
}
}