mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
21 lines
552 B
C
21 lines
552 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;
|
||
|
};
|