/* * Copyright (C) 2016+ AzerothCore , released under GNU AGPL v3 license, you may redistribute it * and/or modify it under version 3 of the License, or (at your option), any later version. */ #ifndef _PLAYERBOT_PALADINAIOBJECTCONTEXT_H #define _PLAYERBOT_PALADINAIOBJECTCONTEXT_H #include "AiObjectContext.h" class PlayerbotAI; class PaladinAiObjectContext : public AiObjectContext { public: PaladinAiObjectContext(PlayerbotAI* botAI); static void BuildSharedContexts(); static void BuildSharedStrategyContexts(SharedNamedObjectContextList& strategyContexts); static void BuildSharedActionContexts(SharedNamedObjectContextList& actionContexts); static void BuildSharedTriggerContexts(SharedNamedObjectContextList& triggerContexts); static void BuildSharedValueContexts(SharedNamedObjectContextList& valueContexts); static SharedNamedObjectContextList sharedStrategyContexts; static SharedNamedObjectContextList sharedActionContexts; static SharedNamedObjectContextList sharedTriggerContexts; static SharedNamedObjectContextList sharedValueContexts; }; #endif