* feat(Core/Scripts): move all script objects to separated files
* Apply 5bfeabde81
* try gcc build
* again
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
/*
|
|
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License as published by the
|
|
* Free Software Foundation; either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "InstanceMapScript.h"
|
|
#include "InstanceScript.h"
|
|
|
|
class instance_the_stockade : public InstanceMapScript
|
|
{
|
|
public:
|
|
instance_the_stockade() : InstanceMapScript("instance_the_stockade", 34) { }
|
|
|
|
InstanceScript* GetInstanceScript(InstanceMap* map) const override
|
|
{
|
|
return new instance_the_stockade_InstanceMapScript(map);
|
|
}
|
|
|
|
struct instance_the_stockade_InstanceMapScript : public InstanceScript
|
|
{
|
|
instance_the_stockade_InstanceMapScript(Map* map) : InstanceScript(map) { }
|
|
};
|
|
};
|
|
|
|
void AddSC_instance_the_stockade()
|
|
{
|
|
new instance_the_stockade();
|
|
}
|