2021-12-05 17:54:36 +00:00
|
|
|
#pragma once
|
|
|
|
#include "CppScripts.h"
|
|
|
|
|
|
|
|
class Lieutenant : public CppScripts::Script
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
void OnStartup(Entity* self) override;
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void OnDie(Entity* self, Entity* killer) override;
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
|
|
|
|