openmw-tes3coop/components/openmw-mp/Packets/World/PacketObjectPlace.hpp

18 lines
411 B
C++
Raw Normal View History

#ifndef OPENMW_PACKETOBJECTPLACE_HPP
#define OPENMW_PACKETOBJECTPLACE_HPP
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
namespace mwmp
{
class PacketObjectPlace final: public WorldPacket
{
public:
explicit PacketObjectPlace(RakNet::RakPeerInterface *peer);
void Object(WorldObject &worldObject, bool send) override;
};
}
#endif //OPENMW_PACKETOBJECTPLACE_HPP