DarkflameServer/dScripts/02_server/Map/njhub/FallingTile.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
339 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class FallingTile : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnCollisionPhantom(Entity* self, Entity* target) override;
void OnWaypointReached(Entity* self, uint32_t waypointIndex) override;
void OnTimerDone(Entity* self, std::string timerName) override;
};