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

13 lines
228 B
C++

#pragma once
#include "CppScripts.h"
class BaseEnemyMech : public CppScripts::Script
{
public:
void OnStartup(Entity* self) override;
void OnDie(Entity* self, Entity* killer) override;
protected:
LOT qbTurretLOT = 6254;
};