entity_spell_system/entities/SimpleCharacterEffectPointGetter.cpp

10 lines
224 B
C++
Raw Normal View History

2019-04-20 14:02:55 +02:00
#include "SimpleCharacterEffectPointGetter.h"
namespace BS {
namespace Player {
Transform* SimpleCharacterEffectPointGetter::GetEffectPoint(EffectPoints bodyPartEffectPoint){
return MonoBehaviour::transform;
}
}
}