I have been told on here in the past to use Linked Lists to keep track of objects and creatures in my MMORPG. I proceeded to use a 2 dimensional array of TLists. ie.

400 x 400 x TList. Where TList can contain several items on one tile location.

I just read this on gamedev:-

http://www.gamedev.net/reference/art...rticle2041.asp

The question is, is a TList the same thing? If not, do I have to implement a TLinkList myself? Which is fastest? I am using Delphi 4 btw.