ReceiveHitBoxClick() problem

Hey Jurif-

The reason you’re seeing the “does not override a base class member” message is because the ReceiveHitBoxClick() function is marked as BlueprintImplementableEvent in its UFUNCTION() specifier list and does not have it’s own code implementation. Because of this, the function can be called in code but not overriden.

Cheers