add dedicated backend (WIP)

This commit is contained in:
airstruck
2015-11-22 12:36:44 -05:00
parent 97b2332d47
commit bbba7e1b3d
23 changed files with 6073 additions and 235 deletions

7
luigi/backend.lua Normal file
View File

@@ -0,0 +1,7 @@
local ROOT = (...):gsub('[^.]*$', '')
if _G.love and _G.love._version_minor > 8 then
return require(ROOT .. 'backend.love')
else
return require(ROOT .. 'backend.ffisdl')
end