forked from teamnwah/openmw-tes3coop
2cb0ea20f0
Use explicit for constructors Use override instead virtual for inherited methods Mark final derived classes as "final"
17 lines
395 B
C++
17 lines
395 B
C++
#ifndef OPENMW_PACKETACTORLIST_HPP
|
|
#define OPENMW_PACKETACTORLIST_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Actor/ActorPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketActorList final: public ActorPacket
|
|
{
|
|
public:
|
|
explicit PacketActorList(RakNet::RakPeerInterface *peer);
|
|
|
|
void Packet(RakNet::BitStream *bs, bool send) final;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETACTORLIST_HPP
|