DarkflameServer/dScripts/02_server/Map/General/GrowingFlower.h

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

12 lines
364 B
C
Raw Permalink Normal View History

#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;
};