mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-05-06 13:11:26 +00:00
Conflicts: apps/openmw-mp/Script/Functions/Cells.cpp apps/openmw-mp/Script/Functions/Cells.hpp apps/openmw-mp/Script/Functions/Worldstate.cpp apps/openmw-mp/Script/Functions/Worldstate.hpp apps/openmw-mp/Script/ScriptFunctions.hpp apps/openmw-mp/processors/player/ProcessorPlayerMap.hpp apps/openmw/mwmp/processors/player/ProcessorPlayerMap.hpp components/openmw-mp/Base/BasePlayer.hpp components/openmw-mp/Packets/Player/PacketPlayerMap.hpp components/openmw-mp/Packets/Worldstate/PacketWorldMap.cpp
17 lines
422 B
C++
17 lines
422 B
C++
#ifndef OPENMW_PACKETPLAYERANIMFLAGS_HPP
|
|
#define OPENMW_PACKETPLAYERANIMFLAGS_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketPlayerAnimFlags final: public PlayerPacket
|
|
{
|
|
public:
|
|
PacketPlayerAnimFlags(RakNet::RakPeerInterface *peer);
|
|
|
|
void Packet(RakNet::BitStream *bs, bool send) override;
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETPLAYERANIMFLAGS_HPP
|