forked from mirror/openmw-tes3mp
24 lines
455 B
C++
24 lines
455 B
C++
|
#ifndef OPENMW_PROCESSORCELLCREATE_HPP
|
||
|
#define OPENMW_PROCESSORCELLCREATE_HPP
|
||
|
|
||
|
#include "../PlayerProcessor.hpp"
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class ProcessorCellCreate : public PlayerProcessor
|
||
|
{
|
||
|
public:
|
||
|
ProcessorCellCreate()
|
||
|
{
|
||
|
BPP_INIT(ID_CELL_CREATE)
|
||
|
}
|
||
|
|
||
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
||
|
{
|
||
|
// Placeholder
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PROCESSORCELLCREATE_HPP
|