05.01.2011, 18:03
[OFFTOPIC]
Instead of forwarding/public for callbacks you can use this:
So it will be like this:
instead of
Someone made this before, but idk who anymore. And I am using this for a long time.
Instead of forwarding/public for callbacks you can use this:
pawn Код:
#define CB:%0(%1) forward %0(%1); public %0(%1)
pawn Код:
CB:GiveBack(playerid)
{
// Do something
return 1;
}
pawn Код:
forward GiveBack(playerid);
public GiveBack(playerid)
{
// Do something
return 1;
}