Help with this thing
#1

Код:
public function lacks forward declaration
What dose this mean?
Reply
#2

Bump~~~~
Reply
#3

It means that you need to forward the function.

Example:
pawn Код:
forward myFunction(value1, value2);

public myFunction(value1, value2)
{
  // code.
  return (value1 + value2);
}
Reply
#4

just above your funtion definition.

Код:
forward function(arguments as in definition);

public function(arguments)
{
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)