How can I make a 2D array with Lua? I need to dynamically create this.
local tbl = { { } }
Something like the above but where I can specify how many items. In my case they'll be the same amount. I basically want to access it like tbl[3][5].
Thanks