mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-24 17:24:57 +01:00
23 lines
377 B
C
23 lines
377 B
C
|
#ifndef I_EFFECT_POINT_HELPER_H
|
||
|
#define I_EFFECT_POINT_HELPER_H
|
||
|
|
||
|
class IEffectPointGetter
|
||
|
{
|
||
|
public:
|
||
|
enum class EffectPoints{
|
||
|
NONE,
|
||
|
WEAPON,
|
||
|
BASE,
|
||
|
BODY,
|
||
|
RIGHT_HAND,
|
||
|
LEFT_HAND,
|
||
|
HEAD,
|
||
|
RIGHT_EYE,
|
||
|
LEFT_EYE
|
||
|
};
|
||
|
|
||
|
virtual Transform* GetEffectPoint(EffectPoints bodyPartEffectPoint) = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|