How many ways are there of creating a list in Bmax?
Currently I'm using the following method:
Local OjectList:TList = CreateList()
I've seen code where a list is created but stored in a type. I hope I'm making sense.
I was wondering if storing the list in the type is better than creating it outside the type?
Type TObject
Field List:TList
etc..
etc..
End Type
I don't know how to get the second method of using lists working. How do you do it?
Currently I'm using the following method:
Local OjectList:TList = CreateList()
I've seen code where a list is created but stored in a type. I hope I'm making sense.
I was wondering if storing the list in the type is better than creating it outside the type?
Type TObject
Field List:TList
etc..
etc..
End Type
I don't know how to get the second method of using lists working. How do you do it?