DarkflameServer/dScripts/BaseWavesGenericEnemy.h

11 lines
263 B
C
Raw Normal View History

#pragma once
#include "CppScripts.h"
class BaseWavesGenericEnemy : virtual 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:
2022-07-28 13:39:57 +00:00
virtual uint32_t GetPoints() { return 0; };
};