mirror of
https://github.com/Squareville/wonderland-server.git
synced 2025-12-16 20:34:54 -06: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;
|
|
};
|