Is there an equivalent of #if WITH_SERVER_CODE in Blueprints?

Hi!

Is there an equivalent of this in BP (or about to come out?)

void MyServerOnlyFunction()
{
#if WITH_SERVER_CODE
    Do Server Stuff here;
#endif
}

The logic in the WITH_SERVER_CODE will NOT EXIST in the client binary.
that makes building dedicated servers pretty smooth.

regards

forum says no

Blueprints can’t have pre-compiler directives, so no you won’t have this with Blueprints.