[HOT FIX] MS build issues regarding folder / command lenght usage or rc.exe (#2038)

This commit is contained in:
bashermens
2026-01-19 22:45:28 +01:00
committed by GitHub
parent fd07e02a8a
commit 41c53365ae
1119 changed files with 27 additions and 27 deletions

View File

@@ -0,0 +1,26 @@
#ifndef _PLAYERBOT_WOTLKDUNGEONFOSTRIGGERCONTEXT_H
#define _PLAYERBOT_WOTLKDUNGEONFOSTRIGGERCONTEXT_H
#include "NamedObjectContext.h"
#include "AiObjectContext.h"
#include "ForgeOfSoulsTriggers.h"
class WotlkDungeonFoSTriggerContext : public NamedObjectContext<Trigger>
{
public:
WotlkDungeonFoSTriggerContext()
{
creators["bronjahm position"] = &WotlkDungeonFoSTriggerContext::bronjahm_position;
creators["move from bronjahm"] = &WotlkDungeonFoSTriggerContext::move_from_bronjahm;
creators["switch to soul fragment"] = &WotlkDungeonFoSTriggerContext::switch_to_soul_fragment;
creators["devourer of souls"] = &WotlkDungeonFoSTriggerContext::devourer_of_souls;
}
private:
static Trigger* move_from_bronjahm(PlayerbotAI* ai) { return new MoveFromBronjahmTrigger(ai); }
static Trigger* switch_to_soul_fragment(PlayerbotAI* ai) { return new SwitchToSoulFragment(ai); }
static Trigger* bronjahm_position(PlayerbotAI* ai) { return new BronjahmPositionTrigger(ai); }
static Trigger* devourer_of_souls(PlayerbotAI* ai) { return new DevourerOfSoulsTrigger(ai); }
};
#endif // !_PLAYERBOT_WOTLKDUNGEONFOSTRIGGERCONTEXT_H