mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
d163f1b6da
Rename the old WorldKillCount that was a Player packet into PlayerPlaceholder. Rename the unused CellCreate that was a Worldstate packet into WorldKillCount. On the server, move kill count-related script functions from QuestFunctions to WorldstateFunctions.
17 lines
408 B
C++
17 lines
408 B
C++
#ifndef OPENMW_PACKETPLACEHOLDER_HPP
|
|
#define OPENMW_PACKETPLACEHOLDER_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Player/PlayerPacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketPlayerPlaceholder : public PlayerPacket
|
|
{
|
|
public:
|
|
PacketPlayerPlaceholder(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETPLACEHOLDER_HPP
|