DarkflameServer/dScripts/DLUVanityNPC.h

14 lines
249 B
C
Raw Normal View History

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