I am creating a very simple 2d game ...
My wall and item placements in the level are read from a text file.
i.e wall 000 100 100 100 100 200 000 200
I am unsure what type to read them into.
I was going to use predefined arrays but the size will change from level to level.
Would a Vector container be correct or is there something more suitable?