06.01.2018, 16:43
Quote:
Hello everyone. I have a little doubt about how to declare functions to use in the Gamemode
Код:
forward MyFunction(); public MyFunction() { // rest of code } stock MyFunction(){ // rest of code } MyFunction(){ // rest of code } |
Stock functions are usually used in libraries, the compiler won't throw the warning 203 (symbol is never used: "MyFunction") if you're not using a certain stock function as it won't include it.
PHP код:
MyFunction(){
// rest of code
}
Код:
warning 203: symbol is never used: "MyFunction"