2017-03-31 18:36:24 +00:00
|
|
|
#ifndef OPENMW_PROCESSORPLAYERJOURNAL_HPP
|
|
|
|
#define OPENMW_PROCESSORPLAYERJOURNAL_HPP
|
|
|
|
|
2017-07-03 17:13:10 +00:00
|
|
|
#include "../PlayerProcessor.hpp"
|
2017-03-31 18:36:24 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
|
|
|
class ProcessorPlayerJournal : public PlayerProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorPlayerJournal()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_PLAYER_JOURNAL)
|
|
|
|
}
|
|
|
|
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
|
|
{
|
|
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
|
|
|
2017-05-16 17:52:09 +00:00
|
|
|
Script::Call<Script::CallbackIdentity("OnPlayerJournal")>(player.getId());
|
2017-03-31 18:36:24 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERJOURNAL_HPP
|