mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-10 14:57:06 +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
|