2017-04-25 18:24:39 +00:00
|
|
|
#ifndef OPENMW_PROCESSORPLAYERBOUNTY_HPP
|
|
|
|
#define OPENMW_PROCESSORPLAYERBOUNTY_HPP
|
|
|
|
|
2017-07-03 17:13:10 +00:00
|
|
|
#include "../PlayerProcessor.hpp"
|
2017-04-25 18:24:39 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
|
|
|
class ProcessorPlayerBounty : public PlayerProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorPlayerBounty()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_PLAYER_BOUNTY)
|
|
|
|
}
|
|
|
|
|
2017-08-27 16:15:56 +00:00
|
|
|
void Do(PlayerPacket &packet, std::shared_ptr<Player> player) override
|
2017-04-25 18:24:39 +00:00
|
|
|
{
|
2017-08-27 16:15:56 +00:00
|
|
|
Networking::get().getState().getEventCtrl().Call<CoreEvent::ON_PLAYER_BOUNTY>(player);
|
2017-04-25 18:24:39 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERBOUNTY_HPP
|