You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
698 B
C++
26 lines
698 B
C++
#ifndef OPENMW_PROCESSOROBJECTLOCK_HPP
|
|
#define OPENMW_PROCESSOROBJECTLOCK_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectLock : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectLock()
|
|
{
|
|
BPP_INIT(ID_OBJECT_LOCK)
|
|
}
|
|
|
|
void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList) override
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
|
|
|
|
Plugin::Call<CallbackIndex("OnObjectLock")>(player.getId(), objectList.cell.getDescription().c_str());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTLOCK_HPP
|