2017-05-29 01:43:52 +00:00
|
|
|
#ifndef OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
|
|
#define OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
|
|
|
2017-06-06 16:06:10 +00:00
|
|
|
#include "../PlayerProcessor.hpp"
|
2017-05-29 01:43:52 +00:00
|
|
|
|
|
|
|
namespace mwmp
|
|
|
|
{
|
|
|
|
class ProcessorGameWeather : public PlayerProcessor
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ProcessorGameWeather()
|
|
|
|
{
|
|
|
|
BPP_INIT(ID_GAME_WEATHER)
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
|
|
{
|
|
|
|
// Placeholder to be filled in later
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //OPENMW_PROCESSORGAMEWEATHER_HPP
|