mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
18 lines
406 B
C
18 lines
406 B
C
|
#pragma once
|
||
|
#include "CppScripts.h"
|
||
|
#include "PhantomPhysicsComponent.h"
|
||
|
#include "SkillComponent.h"
|
||
|
#include "EntityManager.h"
|
||
|
#include "AgMonumentLaserServer.h"
|
||
|
|
||
|
class AgLaserSensorServer : public CppScripts::Script {
|
||
|
public:
|
||
|
void OnStartup(Entity* self);
|
||
|
void OnCollisionPhantom(Entity* self, Entity* target);
|
||
|
private:
|
||
|
SkillComponent* m_Skill;
|
||
|
int m_RepelForce = -25;
|
||
|
int m_SkillCastID = 163;
|
||
|
};
|
||
|
|