openmw-tes3coop/apps/openmw/mwmp/processors/player/ProcessorPlayerMap.hpp

24 lines
471 B
C++
Raw Normal View History

#ifndef OPENMW_PROCESSORPLAYERMAP_HPP
#define OPENMW_PROCESSORPLAYERMAP_HPP
2017-06-06 16:06:10 +00:00
#include "../PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerMap : public PlayerProcessor
{
public:
ProcessorPlayerMap()
{
BPP_INIT(ID_PLAYER_MAP)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
{
// Placeholder to be filled in later
}
};
}
#endif //OPENMW_PROCESSORPLAYERMAP_HPP