DarkflameServer/dScripts/02_server/Map/AM/WanderingVendor.h

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

14 lines
380 B
C
Raw Permalink Normal View History

#ifndef WANDERINGVENDOR_H
#define WANDERINGVENDOR_H
#include "CppScripts.h"
class WanderingVendor : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnProximityUpdate(Entity* self, Entity* entering, std::string name, std::string status) override;
void OnTimerDone(Entity* self, std::string timerName) override;
};
#endif //!WANDERINGVENDOR_H