mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-24 19:23:52 +00:00
18 lines
420 B
C++
18 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
|