forked from mirror/openmw-tes3mp
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
23 lines
558 B
C++
23 lines
558 B
C++
#ifndef OPENMW_PROCESSORPLAYERREGIONAUTHORITY_HPP
|
|
#define OPENMW_PROCESSORPLAYERREGIONAUTHORITY_HPP
|
|
|
|
#include "apps/openmw/mwmp/PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerRegionAuthority : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerRegionAuthority()
|
|
{
|
|
BPP_INIT(ID_PLAYER_REGION_AUTHORITY)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
// Placeholder to be filled in later
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERREGIONAUTHORITY_HPP
|