mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-25 00:23:50 +00:00
23 lines
455 B
C++
23 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
|