Let's say I got a compression function that outputs a lua table that contains compressed data. How do I get it from my tool to game's code so I can remove original data and just use compressed one to save cart space?
i.e. I have for example following function
function compress(uncompressed_table) --do some compression stuff return compressed_table end
How do I get compressed_table out of that tool and into my program?