DarkflameServer/dScripts/HydrantSmashable.h
2022-07-28 08:39:57 -05:00

11 lines
191 B
C++

#pragma once
#include "CppScripts.h"
class HydrantSmashable : public CppScripts::Script
{
public:
void OnDie(Entity* self, Entity* killer) override;
private:
LOT HYDRANT_BROKEN = 7328;
};