DarkflameServer/dScripts/02_server/Map/AG/AgLaserSensorServer.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
281 B
C
Raw Normal View History

#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;
};