first socket method implementation :)

This commit is contained in:
kremsy
2015-06-21 22:24:10 +02:00
parent a025211dfd
commit 8a58035a57
4 changed files with 47 additions and 4 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace ManiaControl\Sockets;
interface SocketMethods {
/** Returns the last 200 lines of the chat (inclusive player logins and nicknames) */
const GET_SERVER_CHAT = "Chat.GetServerChat";
}