mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
10 lines
296 B
C++
10 lines
296 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class CatapultBaseServer : public CppScripts::Script {
|
|
public:
|
|
void OnNotifyObject(Entity* self, Entity* sender, const std::string& name, int32_t param1 = 0, int32_t param2 = 0) override;
|
|
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
};
|