1
0
Fork 0
mirror of https://github.com/ctruLua/uCompat.git synced 2025-10-28 00:59:31 +00:00

Initial untested code.

This commit is contained in:
Firew0lf 2015-10-04 00:36:08 +02:00
parent f18dc53472
commit 7844e5a117
3 changed files with 215 additions and 0 deletions

16
uCompat.lua Normal file
View file

@ -0,0 +1,16 @@
--[[
Main µLua compatibility layer/lib for ctrµLua
The goal is not to provide a full compatibility, but something close.
]]
-- Constants
ULUA_VERSION = "4.7.2"
ULUA_DIR = "sdmc:/3ds/ctruLua/"
ULUA_SCRIPTS = (ULUA_DIR.."scripts/") -- Warning: you need to create the folder
ULUA_LIBS = (ULUA_DIR.."libs/")
ULUA_BOOT_FILE = "main.lua"
ULUA_BOOT_FULLPATH = (ULUA_DIR..ULUA_BOOT_FILE)
-- Other libs
screen = require("uCompat.screen")