mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
12 lines
364 B
C++
12 lines
364 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class GrowingFlower : public CppScripts::Script {
|
|
public:
|
|
void OnSkillEventFired(Entity* self, Entity* target, const std::string& message) override;
|
|
void OnTimerDone(Entity* self, std::string message) override;
|
|
private:
|
|
static const std::vector<uint32_t> achievementIDs;
|
|
constexpr static const float aliveTime = 16.0f;
|
|
};
|