mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
f22bf24663
As part of the base enemy mech script its faction should be updated to 4 to make sure it's seen as an enemy by the client. The AgDarklingMech script has been deleted as its functionality was essentially that of BaseEnemyMech and thus no longer necessary.
13 lines
235 B
C++
13 lines
235 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;
|
|
};
|
|
|