On declaring dynamic multicast delegate with code below
DECLARE_DYNAMIC_MULTICAST_DELEGATE_OneParam(FNaItemListSlotEvent, int, Position);
I got this compiling error:
error C2143: syntax error: missing ';' before '<class-head>'
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
error C3861: 'FNaItemListSlotEvent_DelegateWrapper': identifier not found
How can I declare this delegate correctly?
Thank you!