mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 22:37:45 +00:00
25 lines
No EOL
502 B
C++
25 lines
No EOL
502 B
C++
#include <ScriptObject.h>
|
|
#include <Zone/InstanceContent.h>
|
|
|
|
class TheAetherochemicalResearchFacility : public InstanceContentScript
|
|
{
|
|
public:
|
|
TheAetherochemicalResearchFacility() : InstanceContentScript( 38 )
|
|
{ }
|
|
|
|
void onInit( InstanceContentPtr instance ) override
|
|
{
|
|
|
|
}
|
|
|
|
void onUpdate( InstanceContentPtr instance, uint32_t currTime ) override
|
|
{
|
|
|
|
}
|
|
|
|
void onEnterTerritory( Entity::Player &player, uint32_t eventId, uint16_t param1, uint16_t param2 ) override
|
|
{
|
|
|
|
}
|
|
|
|
}; |