mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-13 03:38:20 +00:00
9708ea28dc
* Removed hardcoded laser logic * Address feedback
15 lines
281 B
C++
15 lines
281 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class SkillComponent;
|
|
|
|
class AgLaserSensorServer : public CppScripts::Script {
|
|
public:
|
|
void OnStartup(Entity* self);
|
|
void OnCollisionPhantom(Entity* self, Entity* target);
|
|
private:
|
|
float m_RepelForce = -25.0f;
|
|
int m_SkillCastID = 163;
|
|
};
|
|
|