diff options
Diffstat (limited to 'src/game/GameEvent.h')
-rw-r--r-- | src/game/GameEvent.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/game/GameEvent.h b/src/game/GameEvent.h index 9f69aa9e6ea..184f4934b5d 100644 --- a/src/game/GameEvent.h +++ b/src/game/GameEvent.h @@ -1,7 +1,7 @@ /* - * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/> + * Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/> * - * Copyright (C) 2008 Trinity <http://www.trinitycore.org/> + * Copyright (C) 2008-2009 Trinity <http://www.trinitycore.org/> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -127,7 +127,9 @@ class GameEvent bool hasGameObjectActiveEventExcept(uint32 go_guid, uint16 event_id); protected: typedef std::list<uint32> GuidList; + typedef std::list<uint16> IdList; typedef std::vector<GuidList> GameEventGuidMap; + typedef std::vector<IdList> GameEventIdMap; typedef std::pair<uint32, ModelEquip> ModelEquipPair; typedef std::list<ModelEquipPair> ModelEquipList; typedef std::vector<ModelEquipList> GameEventModelEquipMap; @@ -149,6 +151,7 @@ class GameEvent GameEventModelEquipMap mGameEventModelEquip; GameEventGuidMap mGameEventCreatureGuids; GameEventGuidMap mGameEventGameobjectGuids; + GameEventIdMap mGameEventPoolIds; GameEventDataMap mGameEvent; GameEventBitmask mGameEventBattleGroundHolidays; QuestIdToEventConditionMap mQuestToEventConditions; |