9 lines
215 B
PHP
9 lines
215 B
PHP
<?php
|
|
|
|
namespace ManiaControl\Communication;
|
|
|
|
|
|
interface CommunicationMethods {
|
|
/** Returns the last 200 lines of the chat (inclusive player logins and nicknames) */
|
|
const GET_SERVER_CHAT = "Chat.GetServerChat";
|
|
} |