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