I'm working on a map editor and the tiles show up i a file as
1, 0, 0, 1,
1, 0, 1, 1
so here's a 4x2 map. I'm wondering how can I parse out the integers from the commas and assign them to a multidimensional array so that \i can move onto drawing the tiles to the screen...
Thanks for any help!