DarkflameServer/dScripts/ai/FV/FvPandaServer.h

9 lines
294 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class FvPandaServer : public CppScripts::Script {
2022-07-28 13:39:57 +00:00
void OnStartup(Entity* self) override;
void OnNotifyPetTamingMinigame(Entity* self, Entity* tamer, ePetTamingNotifyType type) override;
2022-07-28 13:39:57 +00:00
void OnTimerDone(Entity* self, std::string timerName) override;
};