void ACntrls::Tick( float DeltaTime )
{
Super::Tick( DeltaTime );
FollowActor(itemA, itemB);
}
When you call the function, you do not have to specify type of parametr, that you pass to a function.
void ACntrls::Tick( float DeltaTime )
{
Super::Tick( DeltaTime );
FollowActor(itemA, itemB);
}
When you call the function, you do not have to specify type of parametr, that you pass to a function.