2015-06-21 22:24:10 +02:00
|
|
|
<?php
|
|
|
|
|
2015-06-22 20:22:17 +02:00
|
|
|
namespace ManiaControl\Communication;
|
2015-06-21 22:24:10 +02:00
|
|
|
|
2015-06-22 22:52:26 +02:00
|
|
|
/**
|
|
|
|
* Communication Methods Interface
|
|
|
|
*
|
|
|
|
* @author ManiaControl Team <mail@maniacontrol.com>
|
|
|
|
* @copyright 2014-2015 ManiaControl Team
|
|
|
|
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
|
|
|
|
*/
|
2015-06-22 20:22:17 +02:00
|
|
|
interface CommunicationMethods {
|
2015-06-21 22:24:10 +02:00
|
|
|
/** Returns the last 200 lines of the chat (inclusive player logins and nicknames) */
|
|
|
|
const GET_SERVER_CHAT = "Chat.GetServerChat";
|
|
|
|
}
|