DarkflameServer/dScripts/WblRobotCitizen.h

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

13 lines
302 B
C
Raw Normal View History

#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;
private:
const float m_AnimationTime = 2.5;
};