mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
9655f0ee45
fix compile issues
14 lines
380 B
C++
14 lines
380 B
C++
#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
|