- Joined
- Mar 18, 2012
- Messages
- 1,716
Simple question, is there a difference between
and
I ask because I've seen this
JASS:
private static method init takes nothing returns nothing
call table.create()
endmethod
private static method onInit takes nothing returns nothing
call init()
endmethod
JASS:
private static method onInit takes nothing returns nothing
call table.create()
endmethod
I ask because I've seen this
JASS:
module OnInit
private static method onInit takes nothing returns nothing
call init()
endmethod
endmodule