mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-28 03:02:05 +00:00
12 lines
267 B
C++
12 lines
267 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class GfBananaCluster final : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
void OnHit(Entity* self, Entity* attacker) override;
|
|
};
|