mhframework.net.server
Interface MHGameServer


public interface MHGameServer

Interface implemented by the server side of a client/server game.


Method Summary
 void receiveMessage(MHClientInfo sender, MHNetworkMessage message, MHServerModule server)
          Abstract method intended to process game-specific messages delegated here by the server module.
 

Method Detail

receiveMessage

void receiveMessage(MHClientInfo sender,
                    MHNetworkMessage message,
                    MHServerModule server)
Abstract method intended to process game-specific messages delegated here by the server module.

Parameters:
message - The message to be processed.
server - The server module handling communication with clients.