mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 16:19:54 +00:00
17 lines
420 B
C++
17 lines
420 B
C++
#ifndef OPENMW_PACKETCLIENTSCRIPTLOCAL_HPP
|
|
#define OPENMW_PACKETCLIENTSCRIPTLOCAL_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketClientScriptLocal : public ObjectPacket
|
|
{
|
|
public:
|
|
PacketClientScriptLocal(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Object(BaseObject &obj, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETCLIENTSCRIPTLOCAL_HPP
|