mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-03-11 02:11:16 -05:00
12 lines
190 B
C++
12 lines
190 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class Lieutenant : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
|
|
void OnDie(Entity* self, Entity* killer) override;
|
|
};
|
|
|