/*
* Created by Andrey Cherkashin (acherkashin)
* http://acherkashin.me
*
* License
* Copyright (c) 2015 Andrey Cherkashin
* The project released under the MIT license: http://opensource.org/licenses/MIT
*/
package ragefist.packets;
/**
*
* @author acherkashin
*/
public abstract class IncomingConsolePacket extends IncomingPacket
{
// ---------------------------------------------------------------------- //
// PROTECTED
// ---------------------------------------------------------------------- //
protected String _consoleTitle() {
return "> ";
}
protected String _consoleClear() {
return "\033c";
}
}