DarkflameServer/dScripts/CatapultBouncerServer.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

8 lines
174 B
C++

#pragma once
#include "CppScripts.h"
class CatapultBouncerServer : public CppScripts::Script {
public:
void OnRebuildComplete(Entity* self, Entity* target) override;
};