2018-01-29 20:32:51 +00:00
|
|
|
#ifndef OPENMW_PROCESSORCELLCREATE_HPP
|
|
|
|
#define OPENMW_PROCESSORCELLCREATE_HPP
|
|
|
|
|
2018-07-14 20:06:09 +00:00
|
|
|
#include "../WorldstateProcessor.hpp"
|
2018-01-29 20:32:51 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-07-14 20:06:09 +00:00
|
|
|
class ProcessorCellCreate : public WorldstateProcessor
|
2018-01-29 20:32:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorCellCreate()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_CELL_CREATE)
|
|
|
|
}
|
|
|
|
|
2018-07-14 20:06:09 +00:00
|
|
|
virtual void Do(WorldstatePacket &packet, Worldstate &worldstate)
|
2018-01-29 20:32:51 +00:00
|
|
|
{
|
|
|
|
// Placeholder
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORCELLCREATE_HPP
|