DarkflameServer/dScripts/ai/WILD/WildSnake02.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
372 B
C
Raw Normal View History

2023-12-23 19:44:42 +00:00
#pragma once
#include "CppScripts.h"
class WildSnake02 : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnNotifyObject(Entity* self, Entity* sender, const std::string& name, int32_t param1, int32_t param2) override;
void OnTimerDone(Entity* self, std::string timerName) override;
void OnDie(Entity* self, Entity* killer) override;
};