View Single Post
Old 06-06-2006, 06:54 AM   #5
andrewas
Harper
 

Join Date: October 2, 2001
Location: Aberdeen, Scotland
Age: 42
Posts: 4,774
A nine dimensional array? That sounds wrong. If your doing what I think your doing, you want a one dimensional array of data structures, where the struct contains everything you need to know about one NPC. If you know any STL, use a std::vector instead of an array, its more efficient, but if you dont know STL but do know how to use an array safely, go ahead with an array.
andrewas is offline   Reply With Quote