So, here's an idea (and as always, I'm going to be hated for it):
How about a new B4X statement named "Init" which would work like this:
Just an idea...
How about a new B4X statement named "Init" which would work like this:
B4X:
'Old Style:
Dim player As Knight
player.Initialize("Name", 12, -1, True)
'With Init:
Init player("Name", 12, -1, True) As Knight
'----------------------------------------------
'Old Style:
Dim myMap As Map
myMap.Initialize
'With Init:
Init myMap As Map
Just an idea...