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

24 lines
491 B
C++
Raw Normal View History

#ifndef OPENMW_PROCESSORPLAYERBOOK_HPP
#define OPENMW_PROCESSORPLAYERBOOK_HPP
#include "apps/openmw/mwmp/PlayerProcessor.hpp"
namespace mwmp
{
class ProcessorPlayerBook : public PlayerProcessor
{
public:
ProcessorPlayerBook()
{
BPP_INIT(ID_PLAYER_BOOK)
}
virtual void Do(PlayerPacket &packet, BasePlayer *player)
{
// Placeholder to be filled in later
}
};
}
#endif //OPENMW_PROCESSORPLAYERBOOK_HPP