#ifndef OPENMW_PROCESSORPLAYERJOURNAL_HPP #define OPENMW_PROCESSORPLAYERJOURNAL_HPP #include "../PlayerProcessor.hpp" namespace mwmp { class ProcessorPlayerJournal final: public PlayerProcessor { public: ProcessorPlayerJournal() { BPP_INIT(ID_PLAYER_JOURNAL) } void Do(PlayerPacket &packet, const std::shared_ptr &player) override { DEBUG_PRINTF(strPacketID.c_str()); Networking::get().getState().getEventCtrl().Call(player.get()); } }; } #endif //OPENMW_PROCESSORPLAYERJOURNAL_HPP