mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-22 10:53:53 +00:00
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
23 lines
492 B
C++
23 lines
492 B
C++
#ifndef OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
#define OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
|
|
#include "apps/openmw-mp/PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorGameWeather : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorGameWeather()
|
|
{
|
|
BPP_INIT(ID_GAME_WEATHER)
|
|
}
|
|
|
|
void Do(PlayerPacket &packet, Player &player) override
|
|
{
|
|
// Placeholder to be filled in later
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORGAMEWEATHER_HPP
|