mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-27 09:06:31 +00:00
12 lines
240 B
C++
12 lines
240 B
C++
#ifndef ENEMYCLEARTHREAT_H
|
|
#define ENEMYCLEARTHREAT_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class EnemyClearThreat : public CppScripts::Script {
|
|
public:
|
|
void OnCollisionPhantom(Entity* self, Entity* target) override;
|
|
};
|
|
|
|
#endif //!ENEMYCLEARTHREAT_H
|