27 lines
819 B
C++
27 lines
819 B
C++
/*
|
|
* Originally written by Xinef - Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU AGPL v3 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3
|
|
*/
|
|
|
|
#include "InstanceScript.h"
|
|
#include "ScriptMgr.h"
|
|
|
|
class instance_ragefire_chasm : public InstanceMapScript
|
|
{
|
|
public:
|
|
instance_ragefire_chasm() : InstanceMapScript("instance_ragefire_chasm", 389) { }
|
|
|
|
InstanceScript* GetInstanceScript(InstanceMap* map) const override
|
|
{
|
|
return new instance_ragefire_chasm_InstanceMapScript(map);
|
|
}
|
|
|
|
struct instance_ragefire_chasm_InstanceMapScript : public InstanceScript
|
|
{
|
|
instance_ragefire_chasm_InstanceMapScript(Map* map) : InstanceScript(map) { }
|
|
};
|
|
};
|
|
|
|
void AddSC_instance_ragefire_chasm()
|
|
{
|
|
new instance_ragefire_chasm();
|
|
}
|