You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
491 B
C++
24 lines
491 B
C++
#ifndef OPENMW_PROCESSORPLAYERPOSITION_HPP
|
|
#define OPENMW_PROCESSORPLAYERPOSITION_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerPosition : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerPosition()
|
|
{
|
|
BPP_INIT(ID_PLAYER_POSITION)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
player.sendToLoaded(&packet);
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERPOSITION_HPP
|