So, I am trying to create a timer event (in C++ /clr this time) but I don't know how to define a new event, this is what I got:
namespace hook
{
public ref class Tick
{
private:
static System::Timers::Timer^ aTimer;
public:
event EventHandler^ OnTick;
int Interval;
Tick()
{
aTimer = gcnew System::Timers::Timer(Interval);
aTimer->Elapsed += gcnew ElapsedEventHandler(Tick::execute);
}
static void execute(Object^ source, ElapsedEventArgs^ e)
{
this->OnTick(this, new EventsArg()); // Wrong
}
};
}