LWJGL Forum

Programming => OpenGL => Topic started by: TechNick6425 on July 14, 2013, 10:05:01

Title: What to use to store multiple dynamic objects?
Post by: TechNick6425 on July 14, 2013, 10:05:01
I was reading a tutorial on c++, and it had an object of the type Block***. It seemed as if able to keep track of the cordinates of the block. How would I recreate this is Java?
Title: Re: What to use to store multiple dynamic objects?
Post by: Raindeer on July 16, 2013, 18:11:42
I don't think this is a matter of OpenGL. You could store the objects simply in an ArrayList.
Title: Re: What to use to store multiple dynamic objects?
Post by: TechNick6425 on July 23, 2013, 00:29:59
Thanks for the tip, but I found I can use "Block[][][]" for the same purpose.

P.S. Sorry I accidentally posted it in the wrong forum.