mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
21 lines
534 B
C++
21 lines
534 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class AmSkullkinTower : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
|
|
void SpawnLegs(Entity* self, const std::string& loc);
|
|
|
|
void OnChildLoaded(Entity* self, Entity* child);
|
|
|
|
void NotifyDie(Entity* self, Entity* other, Entity* killer);
|
|
|
|
void OnChildRemoved(Entity* self, Entity* child);
|
|
|
|
void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override;
|
|
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
};
|