mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 08:39:04 +00:00
14 lines
169 B
Java
14 lines
169 B
Java
package com.rs2.console;
|
|
|
|
/**
|
|
*
|
|
* @author RS-Emulators
|
|
*
|
|
*/
|
|
public interface CommandProcessor {
|
|
|
|
public boolean command(String[] cmd);
|
|
|
|
public String help();
|
|
}
|