DarkflameServer/dScripts/BaseWavesGenericEnemy.h
2023-10-09 15:31:25 -05:00

11 lines
263 B
C++

#pragma once
#include "CppScripts.h"
class BaseWavesGenericEnemy : virtual public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
void OnDie(Entity* self, Entity* killer) override;
protected:
virtual uint32_t GetPoints() { return 0; };
};