2016-10-26 21:41:14 +00:00
|
|
|
#ifndef OPENMW_PACKETSCRIPTMEMBERSHORT_HPP
|
|
|
|
#define OPENMW_PACKETSCRIPTMEMBERSHORT_HPP
|
|
|
|
|
2018-05-12 16:40:00 +00:00
|
|
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
2016-10-26 21:41:14 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
2018-05-12 16:40:00 +00:00
|
|
|
class PacketScriptMemberShort : public ObjectPacket
|
2016-10-26 21:41:14 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PacketScriptMemberShort(RakNet::RakPeerInterface *peer);
|
|
|
|
|
2018-05-12 21:42:24 +00:00
|
|
|
virtual void Object(BaseObject &obj, bool send);
|
2016-10-26 21:41:14 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PACKETSCRIPTMEMBERSHORT_HPP
|