2018-01-29 20:32:51 +00:00
|
|
|
#ifndef OPENMW_PROCESSORCELLCREATE_HPP
|
|
|
|
#define OPENMW_PROCESSORCELLCREATE_HPP
|
|
|
|
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-01-29 22:54:56 +00:00
|
|
|
class ProcessorCellCreate final: public PlayerProcessor
|
2018-01-29 20:32:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorCellCreate()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_CELL_CREATE)
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
|
|
{
|
|
|
|
// Placeholder
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORCELLCREATE_HPP
|