DarkflameServer/dScripts/zone/LUPs/RobotCity_Intro/WblRobotCitizen.h
Aaron Kimbre 691a42ba20 Merge RC script from differnt branch
Add wandering vendor script
Update proximity monitors to move with their respective entityies
2023-08-15 14:35:35 -05:00

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;
};