[8449] Deprecate healing/damage item mods and merge internal data in to spell power.
[getmangos.git] / src / game / CreatureEventAIMgr.h
blobb4672460cc6bd376c6163d764ba3eeef2e5abc14
1 /*
2 * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOS_CREATURE_EAI_MGR_H
20 #define MANGOS_CREATURE_EAI_MGR_H
22 #include "Common.h"
23 #include "CreatureEventAI.h"
25 class CreatureEventAIMgr
27 public:
28 CreatureEventAIMgr(){};
29 ~CreatureEventAIMgr(){};
31 void LoadCreatureEventAI_Texts();
32 void LoadCreatureEventAI_Summons();
33 void LoadCreatureEventAI_Scripts();
35 CreatureEventAI_Event_Map const& GetCreatureEventAIMap() const { return m_CreatureEventAI_Event_Map; }
36 CreatureEventAI_Summon_Map const& GetCreatureEventAISummonMap() const { return m_CreatureEventAI_Summon_Map; }
37 CreatureEventAI_TextMap const& GetCreatureEventAITextMap() const { return m_CreatureEventAI_TextMap; }
39 private:
40 CreatureEventAI_Event_Map m_CreatureEventAI_Event_Map;
41 CreatureEventAI_Summon_Map m_CreatureEventAI_Summon_Map;
42 CreatureEventAI_TextMap m_CreatureEventAI_TextMap;
45 #define CreatureEAI_Mgr MaNGOS::Singleton<CreatureEventAIMgr>::Instance()
46 #endif