I am iterating through a list of LE3 Models. I had some trouble getting the position of every object during an iteration. I finnaly found something that works, but it looks really nasty. There must be a different way of accessing LE3 commands but I haven't found another way.
list<Model*>::iterator it;
for(it=roadBlocks.begin(); it != roadBlocks.end(); ++it)
{
it._Ptr->_Myval->GetPosition()
Also when I debug, this is how it looks: