- Joined
- Apr 23, 2011
- Messages
- 460
What's the difference between functions in jass that have a BJ or no BJ?
Example:
Create a dialog button using DialogAddButtonBJ.
Creating without BJ.
What's the real difference (Other than without BJ taking another value.)
Example:
JASS:
call DialogAddButtonBJ( udg_StartDialog, "All Random" )
JASS:
call DialogAddButton( udg_StartDialog, "All Random", 1 )
What's the real difference (Other than without BJ taking another value.)