28.07.2010, 23:46
So.. I have never tested this out..
what would be better(with the fastest funtionality) to use for creating a funtion.
1. Using forwarding and public
2. Using "stock"
3. Without any text in front
what would be better(with the fastest funtionality) to use for creating a funtion.
1. Using forwarding and public
pawn Код:
forward BLaBLa()
public BLaBla()
{
}
pawn Код:
stock BLaBLa(param,param)
{
}
pawn Код:
BlaBLa(param,param)
{
}