mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
0545adfac3
Have fun!
17 lines
394 B
C++
17 lines
394 B
C++
#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";
|
|
};
|