mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 14:23:51 +00:00
2cb0ea20f0
Use explicit for constructors Use override instead virtual for inherited methods Mark final derived classes as "final"
17 lines
412 B
C++
17 lines
412 B
C++
#ifndef OPENMW_PACKETPLAYERFACTION_HPP
|
|
#define OPENMW_PACKETPLAYERFACTION_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketPlayerFaction final: public PlayerPacket
|
|
{
|
|
public:
|
|
PacketPlayerFaction(RakNet::RakPeerInterface *peer);
|
|
|
|
void Packet(RakNet::BitStream *bs, bool send) override;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETPLAYERFACTION_HPP
|