Files
DarkflameServer/dScripts/HydrantSmashable.h
2022-04-18 21:02:04 -05:00

10 lines
190 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;
};