DarkflameServer/dScripts/PropertyPlatform.h

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

14 lines
343 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class PropertyPlatform : public CppScripts::Script {
public:
void OnUse(Entity* self, Entity* user) override;
void OnRebuildComplete(Entity* self, Entity* target) override;
private:
float_t movementDelay = 10.0f;
float_t effectDelay = 5.0f;
float_t dieDelay = 5.0f;
uint32_t desiredWaypoint = 1;
};