DarkflameServer/dScripts/CatapultBaseServer.h
EmosewaMC dc53c45d65 C Scripts and remove unneeded includes from base cppscripts header
Remove the MissionComponent and Loot includes from all base scripts and place their needed includes in the respective scripts.
2022-06-22 22:19:49 -07:00

10 lines
306 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;
};