DarkflameServer/dScripts/ai/PETS/HydrantSmashable.h

11 lines
191 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class HydrantSmashable : public CppScripts::Script
{
public:
void OnDie(Entity* self, Entity* killer) override;
private:
LOT HYDRANT_BROKEN = 7328;
2022-07-28 13:39:57 +00:00
};