mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 11:49:56 +00:00
18 lines
442 B
C++
18 lines
442 B
C++
|
#ifndef OPENMW_PACKETSCRIPTGLOBALSHORT_HPP
|
||
|
#define OPENMW_PACKETSCRIPTGLOBALSHORT_HPP
|
||
|
|
||
|
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
||
|
|
||
|
namespace mwmp
|
||
|
{
|
||
|
class PacketScriptGlobalShort : public WorldPacket
|
||
|
{
|
||
|
public:
|
||
|
PacketScriptGlobalShort(RakNet::RakPeerInterface *peer);
|
||
|
|
||
|
virtual void Packet(RakNet::BitStream *bs, WorldEvent *event, bool send);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETSCRIPTGLOBALSHORT_HPP
|