How to use UFUNCTION macro with inline methods?

You can try to use it this way:



FORCEINLINE void SomeFunction() {  };
UFUNCTION() void SomeFunction_implementation(); // cpp realisation


2 Likes