mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-05 02:04:04 +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:
16
dScripts/02_server/Map/NT/NtBeamImaginationCollectors.h
Normal file
16
dScripts/02_server/Map/NT/NtBeamImaginationCollectors.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
#include "CppScripts.h"
|
||||
|
||||
class NtBeamImaginationCollectors : public CppScripts::Script
|
||||
{
|
||||
public:
|
||||
void OnStartup(Entity* self) override;
|
||||
int32_t GetRandomNum();
|
||||
void OnTimerDone(Entity* self, std::string timerName) override;
|
||||
|
||||
private:
|
||||
int32_t m_LastRandom = 0;
|
||||
int32_t m_RandMin = 5;
|
||||
int32_t m_RandMax = 15;
|
||||
std::u16string m_FxName = u"beam_collect";
|
||||
};
|
Reference in New Issue
Block a user