DarkflameServer/dScripts/BaseEnemyMech.h

13 lines
228 B
C
Raw Normal View History

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