03.11.2010, 15:32
Hello guys,
I wondered if there is any differnece between these three things:
I know the code is dumb, but it is just an example code.
I hope someone can give me some info about them.
Jeffry
I wondered if there is any differnece between these three things:
pawn Код:
forward GetID(playerid);
public GetID(playerid)
{
return playerid;
}
pawn Код:
stock GetID(playerid)
{
return playerid;
}
pawn Код:
GetID(playerid)
{
return playerid;
}
I hope someone can give me some info about them.
Jeffry