2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "CppScripts.h"
|
|
|
|
|
|
|
|
class RockHydrantSmashable : public CppScripts::Script
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void OnDie(Entity* self, Entity* killer);
|
2022-04-19 02:02:04 +00:00
|
|
|
private:
|
|
|
|
LOT ROCK_HYDRANT_BROKEN = 12293;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|