mirror of
https://github.com/airstruck/luigi.git
synced 2025-12-18 18:06:44 +00:00
9 lines
184 B
Lua
9 lines
184 B
Lua
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
|
|
|