mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 12:48:20 +00:00
691a42ba20
Add wandering vendor script Update proximity monitors to move with their respective entityies
11 lines
257 B
C++
11 lines
257 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class WblRobotCitizen : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
void OnUse(Entity* self, Entity* user) override;
|
|
void OnTimerDone(Entity* self, std::string timerName) override;
|
|
};
|
|
|