forked from mirror/openmw-tes3mp
17 lines
413 B
C++
17 lines
413 B
C++
#ifndef OPENMW_PACKETWORLDWEATHER_HPP
|
|
#define OPENMW_PACKETWORLDWEATHER_HPP
|
|
|
|
#include <components/openmw-mp/Packets/Worldstate/WorldstatePacket.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class PacketWorldWeather : public WorldstatePacket
|
|
{
|
|
public:
|
|
PacketWorldWeather(RakNet::RakPeerInterface *peer);
|
|
|
|
virtual void Packet(RakNet::BitStream *bs, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETWORLDWEATHER_HPP
|