mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-05 18:24:12 +00:00
Organize dScripts (#814)
* Organize dScripts whitespace Remove parent scope Remove parent scope from initial setter Remove debug Remove helper programs * Fix NtImagimeterVisibility script Co-authored-by: aronwk-aaron <aronwk.aaron@gmail.com>
This commit is contained in:
11
dScripts/02_server/Map/General/GrowingFlower.h
Normal file
11
dScripts/02_server/Map/General/GrowingFlower.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user