mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
14 lines
343 B
C
14 lines
343 B
C
|
#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;
|
||
|
};
|