Difference between revisions of "CObjList"
From Project X Wiki
(No difference)
|
Latest revision as of 04:23, 7 March 2010
Contains an objects list.
Fields
class CObjList { int Count; CObject *Objs; }
Count: Number of objects in objects list
Objs: Objects
Methods
class CObjList { CObject GetObject(int i); }
GetObject(int i): Returns object in list with index i
|