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.
32 lines
651 B
C++
32 lines
651 B
C++
//
|
|
// Created by koncord on 31.03.17.
|
|
//
|
|
|
|
#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
|
|
{
|
|
//DEBUG_PRINTF(strPacketID);
|
|
if (!player.creatureStats.mDead)
|
|
{
|
|
player.sendToLoaded(&packet);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERPOSITION_HPP
|