mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-03-05 16:57:52 +00:00
19 lines
650 B
C++
19 lines
650 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-GPL2
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#ifndef ACORE_SKILLDISCOVERY_H
|
|
#define ACORE_SKILLDISCOVERY_H
|
|
|
|
#include "Common.h"
|
|
|
|
class Player;
|
|
|
|
void LoadSkillDiscoveryTable();
|
|
uint32 GetSkillDiscoverySpell(uint32 skillId, uint32 spellId, Player* player);
|
|
bool HasDiscoveredAllSpells(uint32 spellId, Player* player);
|
|
uint32 GetExplicitDiscoverySpell(uint32 spellId, Player* player);
|
|
#endif
|