1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-22 03:53:52 +00:00
openmw-tes3mp/apps/openmw-mp/processors/object/ProcessorObjectMiscellaneous.hpp

26 lines
770 B
C++
Raw Normal View History

#ifndef OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP
#define OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP
#include "../ObjectProcessor.hpp"
namespace mwmp
{
class ProcessorObjectMiscellaneous : public ObjectProcessor
{
public:
ProcessorObjectMiscellaneous()
{
BPP_INIT(ID_OBJECT_MISCELLANEOUS)
}
void Do(ObjectPacket& packet, Player& player, BaseObjectList& objectList) override
{
LOG_MESSAGE_SIMPLE(TimedLog::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
Script::Call<Script::CallbackIdentity("OnObjectMiscellaneous")>(player.getId(), objectList.cell.getShortDescription().c_str());
}
};
}
#endif //OPENMW_PROCESSOROBJECTMISCELLANEOUS_HPP