forked from mirror/openmw-tes3mp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
386 B
C++
18 lines
386 B
C++
8 years ago
|
#ifndef OPENMW_PACKETCONTAINER_HPP
|
||
|
#define OPENMW_PACKETCONTAINER_HPP
|
||
|
|
||
7 years ago
|
#include <components/openmw-mp/Packets/Object/ObjectPacket.hpp>
|
||
8 years ago
|
|
||
|
namespace mwmp
|
||
|
{
|
||
7 years ago
|
class PacketContainer : public ObjectPacket
|
||
8 years ago
|
{
|
||
|
public:
|
||
|
PacketContainer(RakNet::RakPeerInterface *peer);
|
||
|
|
||
8 years ago
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
||
8 years ago
|
};
|
||
|
}
|
||
|
|
||
|
#endif //OPENMW_PACKETCONTAINER_HPP
|