I have an array of objects:
Obj *ObjectDatabase = new Obj[10];
Obj *curObject;

At some point, i want to make curObject point to a single Obj in the array, like curObject = myObject[2], only that doesn't work.
please let me know how to do this.
thanks