mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
27 lines
610 B
C++
27 lines
610 B
C++
#ifndef OPENMW_PROCESSORPLAYERMAP_HPP
|
|
#define OPENMW_PROCESSORPLAYERMAP_HPP
|
|
|
|
#include "apps/openmw-mp/PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerMap : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerMap()
|
|
{
|
|
BPP_INIT(ID_PLAYER_MAP)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
DEBUG_PRINTF(strPacketID.c_str());
|
|
|
|
// Not currently implemented
|
|
//
|
|
// To be dealt with later to save explored areas on local maps
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERMAP_HPP
|