mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 22:19:54 +00:00
690211ad99
Move Send and Read functions to BasePacket
17 lines
408 B
C++
17 lines
408 B
C++
#ifndef OPENMW_PACKETOBJECTANIMPLAY_HPP
|
|
#define OPENMW_PACKETOBJECTANIMPLAY_HPP
|
|
|
|
#include <components/openmw-mp/Packets/World/WorldPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketObjectAnimPlay : public WorldPacket
|
|
{
|
|
public:
|
|
PacketObjectAnimPlay(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETOBJECTANIMPLAY_HPP
|