i have created a class named MipMapData to keep info about mipmaps, it keeps dimensions, datasize, and the imageformat. From another part of the code i create an array of that MipMapData objects, the problem is that each time i add a new MipMapData object into the array all the mimpamp info objects into the array gets their dimension field modified, and when i populate all the array the result is that all the objects has the same value in their dimension field as the last value added into the array. What i am doing wrong with the dimensions field?i have created a class named MipMapData to keep