mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 07:49:56 +00:00
23 lines
483 B
C++
23 lines
483 B
C++
#ifndef OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
#define OPENMW_PROCESSORGAMEWEATHER_HPP
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
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
|