mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 15:19:55 +00:00
17 lines
423 B
C++
17 lines
423 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 *newBitstream, bool send);
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PACKETWORLDWEATHER_HPP
|