mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-12-23 05:53:34 +00:00
0f8c5b436d
* brother * use some better logic
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
|