mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:19:57 +00:00
25 lines
564 B
C++
25 lines
564 B
C++
#ifndef OPENMW_PROCESSORPLAYERINPUT_HPP
|
|
#define OPENMW_PROCESSORPLAYERINPUT_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerInput : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerInput()
|
|
{
|
|
BPP_INIT(ID_PLAYER_INPUT)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
|
|
Script::Call<Script::CallbackIdentity("OnPlayerInput")>(player.getId());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERINPUT_HPP
|