implement some missing scripts

This commit is contained in:
Aaron Kimbre
2022-04-16 23:32:15 -05:00
parent e92cdc4f14
commit b4acf329b4
5 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
#include "CppScripts.h"
class RockHydrantBroken : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnTimerDone(Entity* self, std::string timerName) override;
};