I have some C++ code that interacts with some Lua code. Basically, I want to be able to get some results (in the form of a dictionary a.k.a a collection of items) from a query message and then push them out to Lua as a table so that I can easily access all the results from Lua by using the dictionary.
Right now, I just get one specific value that I want and send that out but it would be nice to send all of them out and not have to request a specific one.