template<typename... ParamTypes>
void TemplateTestFunc(const ECombatTargetType& Type, ParamTypes... Parameters);
As in the above code, the TEmplateTextFunc function can be passed variable parameters, and I want to be able to call it in the blueprint, how should I implement it? Thanks.