Power of operator/function in unreal C++

You can use Pow from FMath:

FMath::Pow(4, 2); // = 16
1 Like