2018-01-29 20:32:51 +00:00
|
|
|
#ifndef OPENMW_PACKETCELLCREATE_HPP
|
|
|
|
#define OPENMW_PACKETCELLCREATE_HPP
|
|
|
|
|
2018-07-14 20:06:09 +00:00
|
|
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
2018-01-29 20:32:51 +00:00
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-07-14 20:06:09 +00:00
|
|
|
class PacketCellCreate: public WorldstatePacket
|
2018-01-29 20:32:51 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketCellCreate(RakNet::RakPeerInterface *peer);
|
|
|
|
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETCELLCREATE_HPP
|