06.01.2018, 16:22
Hello everyone. I have a little doubt about how to declare functions to use in the Gamemode
What are their differences and what is the recommended way?
Код:
forward MyFunction();
public MyFunction() {
// rest of code
}
stock MyFunction(){
// rest of code
}
MyFunction(){
// rest of code
}


