mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-26 15:06:22 +00:00
[HOT FIX] MS build issues regarding folder / command lenght usage or rc.exe (#2038)
This commit is contained in:
19
src/Ai/Base/Actions/UnlockItemAction.h
Normal file
19
src/Ai/Base/Actions/UnlockItemAction.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef _PLAYERBOT_UNLOCKITEMACTION_H
|
||||
#define _PLAYERBOT_UNLOCKITEMACTION_H
|
||||
|
||||
#include "Action.h"
|
||||
|
||||
class PlayerbotAI;
|
||||
|
||||
class UnlockItemAction : public Action
|
||||
{
|
||||
public:
|
||||
UnlockItemAction(PlayerbotAI* botAI) : Action(botAI, "unlock item") { }
|
||||
|
||||
bool Execute(Event event) override;
|
||||
|
||||
private:
|
||||
void UnlockItem(Item* item);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user