Fix shark stinky fish death animation (#1004)

This commit is contained in:
David Markowitz
2023-02-28 15:30:28 -08:00
committed by GitHub
parent 6d989f37f1
commit b6fc959433
2 changed files with 6 additions and 1 deletions

View File

@@ -2,7 +2,10 @@
#include "CppScripts.h"
class StinkyFishTarget : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnSkillEventFired(Entity* self, Entity* caster, const std::string& message) override;
void OnTimerDone(Entity* self, std::string timerName) override;
private:
const LOT SHARK_LOT = 8570;
};