Sha256: bffcf8e70961b9e8cf528782a04057e436163f9c038f0418d97bc260588845d3
Contents?: true
Size: 533 Bytes
Versions: 3
Compression:
Stored size: 533 Bytes
Contents
-- Rad's Library of awesome Lua functions to complement the awesome Corona SDK local M = {} local geometry = require "scripts.lib.geometry" M.geometry = geometry local ioExt = require "scripts.lib.io_ext" M.io = ioExt local stringExt = require "scripts.lib.string_ext" M.string = stringExt local tableExt = require "scripts.lib.table_ext" M.table = tableExt local timeExt = require "scripts.lib.time_ext" M.time = timeExt local debug = function( msg ) native.showAlert("DEBUG", msg, {"OK"}) end M.debug = debug return M
Version data entries
3 entries across 3 versions & 1 rubygems