mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 05:49:56 +00:00
33 lines
613 B
C++
33 lines
613 B
C++
|
//
|
||
|
// Created by koncord on 01.04.17.
|
||
|
//
|
||
|
|
||
|
#ifndef OPENMW_PROCESSORPLAYERCHARCLASS_HPP
|
||
|
#define OPENMW_PROCESSORPLAYERCHARCLASS_HPP
|
||
|
|
||
|
|
||
|
#include "../PlayerProcessor.hpp"
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ProcessorPlayerCharClass : public PlayerProcessor
|
||
|
{
|
||
|
public:
|
||
|
ProcessorPlayerCharClass()
|
||
|
{
|
||
|
BPP_INIT(ID_PLAYER_CHARCLASS)
|
||
|
}
|
||
|
|
||
|
void Do(PlayerPacket &packet, Player &player) override
|
||
|
{
|
||
|
DEBUG_PRINTF(strPacketID.c_str());
|
||
|
|
||
|
packet.setPlayer(&player);
|
||
|
packet.Read();
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif //OPENMW_PROCESSORPLAYERCHARCLASS_HPP
|