mame/plugins/cheat/cheat_json.lua
2017-06-02 18:03:25 -05:00

12 lines
198 B
Lua

local jsoncheat = {}
function jsoncheat.filename(name)
return name .. ".json"
end
function jsoncheat.conv_cheat(data)
local json = require("json")
return json.parse(data)
end
return jsoncheat