1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 07:49:56 +00:00
openmw-tes3mp/apps/openmw/mwmp/processors/player/ProcessorChatMessage.hpp
2017-06-07 00:06:10 +08:00

31 lines
676 B
C++

//
// Created by koncord on 16.04.17.
//
#ifndef OPENMW_PROCESSORCHATMESSAGE_HPP
#define OPENMW_PROCESSORCHATMESSAGE_HPP
#include "../PlayerProcessor.hpp"
#include "apps/openmw/mwmp/Main.hpp"
#include "apps/openmw/mwmp/GUIController.hpp"
namespace mwmp
{
class ProcessorChatMessage : public PlayerProcessor
{
public:
ProcessorChatMessage()
{
BPP_INIT(ID_CHAT_MESSAGE)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
{
if (player != 0)
Main::get().getGUIController()->printChatMessage(player->chatMessage);
}
};
}
#endif //OPENMW_PROCESSORCHATMESSAGE_HPP