General information about creating delegate for event :
void anyFunc(...) { }
class AnyClass
{
public:
static void anyStaticMethod(...) { }
void anyMethod(...) { }
};
AnyClass anyObject;
delegate creating:
delegates::DelegateFunction< Args... > * newDelegate(void(*_func)(Args... args))
usage