02.08.2014, 14:13
Example function copied from Pawn Impementer's Guide
Everyting is quite clear here. Except for the fact, that function is declared static! Not all of them are declared using this keyword however. Can anyone explain, what's the point using it?
Код:
static cell n_sin(AMX *amx, const cell *params) { float r = sin( amx_ctof(params[1]) ); return ftoc®; }