Are the _Implementation and _Validate definitions required in the header file when using server functions? I honestly can’t tell if there is a different using them or not using them, when it it comes to replicating.
The forums and other answers have a handful of answers for previous versions of the engine with some included information regarded GENERATED_BODY( ) and GENERATED_UCLASS_BODY( ) but I am still a bit confused on the whole thing.
void AMyClass::ServerMyFunction_Implementation( )
{
// Code that would be run on the server after validation
}
bool ServerMyFunction_Validate( )
{
return true;
}