01.10.2012, 14:34
How can i use forward public function?
forward test();
public test()
{
//or
forward test(playerid);
public test(playerid)
{
Just forward them?
pawn Код:
|
forward test();
public test()
{
//function u want to be done here
}
//or
forward test(playerid);
public test(playerid)
{
//place fuction u want to be done here
}
pawn Код:
|
forward public test();
public test()
{
//function u want to be done here
}
forward public test(playerid);
public test(playerid)
{
//place fuction u want to be done here
}
The only difference, it seems, is it enforces some extra restrictions. By SLICE |
stock test(playerid)
{
//function
}