Inherit Struct From FDamageEvent

Hi all,

I’m currently implementing UE’s DamageSystem into my c++ WeaponSystem.
Weapons in my game have different armor penetration values.
I want to pass on the armor pen value when a weapon hits an Actor, using UE’s TakeDamage function.
For this, I need a custom FDamageEvent, so I want to inherit from FDamageEvent and create my own. When I define a new struct above my weaponclass in the weaponclass.h file I get the error:

missing 'public' in struct inheritance.

structError

QUESTION:
Where and how do I declare my own DamageEvents inherited from FDamageEvent?

Thank you in advance.

The message says it all; you need to change the line from

struct FPenDamageEvent : FDamageEvent
to
struct FPenDamageEvent : public FDamageEvent

1 Like

Thank you!

1 Like