feat(Core/CommandScript): New GM command "player learn" (#2487)

This commit is contained in:
Stoabrogga
2019-12-20 09:12:27 +01:00
committed by GitHub
parent ae810491e7
commit 4e8c3fd344
7 changed files with 214 additions and 74 deletions

View File

@@ -0,0 +1,10 @@
/*
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
*/
class PlayerCommand
{
public:
static bool Learn(ChatHandler* handler, Player* targetPlayer, uint32 spell, char const* all);
static bool UnLearn(ChatHandler* handler, Player* targetPlayer, uint32 spell, char const* all);
};