mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
12 lines
215 B
C++
12 lines
215 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class GfOrgan : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnUse(Entity* self, Entity* user);
|
|
void OnTimerDone(Entity* self, std::string timerName);
|
|
private:
|
|
bool m_canUse;
|
|
};
|