mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 18:23:52 +00:00
a74bf1baec
(cherry picked from commit 7748e582a8
)
25 lines
454 B
C++
25 lines
454 B
C++
#ifndef OPENMW_PROCESSORPLAYERCHARGEN_HPP
|
|
#define OPENMW_PROCESSORPLAYERCHARGEN_HPP
|
|
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerCharGen final: public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerCharGen()
|
|
{
|
|
BPP_INIT(ID_PLAYER_CHARGEN)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERCHARGEN_HPP
|