mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 14:23:51 +00:00
76a4abd7c0
# Conflicts: # apps/openmw-mp/processors/player/ProcessorPlayerTopic.hpp
26 lines
686 B
C++
26 lines
686 B
C++
#ifndef OPENMW_PROCESSORPLAYERTOPIC_HPP
|
|
#define OPENMW_PROCESSORPLAYERTOPIC_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerTopic : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerTopic()
|
|
{
|
|
BPP_INIT(ID_PLAYER_TOPIC)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, std::shared_ptr<Player> player) override
|
|
{
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
|
|
//Todo: Script::Call<Script::CallbackIdentity("OnPlayerTopic")>(player.getId());
|
|
Networking::get().getState().getEventCtrl().Call<CoreEvent::ON_PLAYER_TOPIC>(player);
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERTOPIC_HPP
|