Two DECLARE_MULTICAST_DELEGATE_OneParam with same params but different name

Hi
Each Tick I calculate game time, firstly I count seconds, minutes and hours. Then I calculate days, months and years. After each calculation I want to send delegate first to update time, then to update date.


My reasoning is that some BPs will need only time, some will need only date, and some will need both.
I cant get it working, is this even possible?
Thanks

Since you want your events to be subscribed from BPs, then you need DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam instead of one you using(which are cpp-only delegates)