mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 12:49:56 +00:00
27148ce9eb
Additionally, make it slightly clearer who created which previously existing packets.
23 lines
503 B
C++
23 lines
503 B
C++
#ifndef OPENMW_PROCESSORPLAYERSPEECH_HPP
|
|
#define OPENMW_PROCESSORPLAYERSPEECH_HPP
|
|
|
|
#include "apps/openmw/mwmp/PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorPlayerSpeech : public PlayerProcessor
|
|
{
|
|
public:
|
|
ProcessorPlayerSpeech()
|
|
{
|
|
BPP_INIT(ID_PLAYER_SPEECH)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
// Placeholder to be filled in later
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORPLAYERSPEECH_HPP
|