2019-03-22 19:33:34 +00:00
|
|
|
#ifndef OPENMW_PACKETCELLRESET_HPP
|
|
|
|
#define OPENMW_PACKETCELLRESET_HPP
|
2018-07-14 21:17:13 +00:00
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2019-03-22 19:33:34 +00:00
|
|
|
class PacketCellReset: public WorldstatePacket
|
2018-07-14 21:17:13 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-03-22 19:33:34 +00:00
|
|
|
PacketCellReset(RakNet::RakPeerInterface *peer);
|
2018-07-14 21:17:13 +00:00
|
|
|
|
2019-12-04 08:17:33 +00:00
|
|
|
virtual void Packet(RakNet::BitStream *newBitstream, bool send);
|
2018-07-14 21:17:13 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-03-22 19:33:34 +00:00
|
|
|
#endif //OPENMW_PACKETCELLRESET_HPP
|