19.12.2015, 13:03
Hello , I would like to know if it's possible to hook the same callback in several times with y_hooks.
Thanks.
Thanks.
// File 1
public OnGameModeInit()
{
printf("ok1");
return 1;
}
// File 2
hook OnGameModeInit()
{
printf("ok2");
return 1;
}
// File 3
hook OnGameModeInit()
{
printf("ok3");
return 1;
}