Would love to see the upcoming rewrite of the IDE come with the "New" keyword. Would make creating objects much more faster.
Old Way
With "New" Keyword.
If any methods have parameters that need to be included with the Initialization:
Old Way
B4X:
Dim Pikmin As Map
Pikmin.Initialize
With "New" Keyword.
B4X:
Dim Pikmin As New Map
If any methods have parameters that need to be included with the Initialization:
B4X:
'Old Way
Dim Pikmin As Method
Pikmin.Initialize("parameter 1", null)
'With "New" Keyboard
Dim Pikmin As New Method("parameter 1", null)