2016-10-26 09:25:50 +00:00
|
|
|
#ifndef OPENMW_PACKETSCRIPTLOCALSHORT_HPP
|
|
|
|
#define OPENMW_PACKETSCRIPTLOCALSHORT_HPP
|
|
|
|
|
|
|
|
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2017-12-09 02:13:14 +00:00
|
|
|
class PacketScriptLocalShort final: public WorldPacket
|
2016-10-26 09:25:50 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-12-09 02:13:14 +00:00
|
|
|
explicit PacketScriptLocalShort(RakNet::RakPeerInterface *peer);
|
2016-10-26 09:25:50 +00:00
|
|
|
|
2017-12-09 02:13:14 +00:00
|
|
|
void Object(WorldObject &obj, bool send) override;
|
2016-10-26 09:25:50 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETSCRIPTLOCALSHORT_HPP
|