mirror of
https://github.com/airstruck/luigi.git
synced 2025-12-18 18:06:44 +00:00
10 lines
198 B
Lua
10 lines
198 B
Lua
local ROOT = (...):gsub('[^.]*$', '')
|
|
|
|
local Backend
|
|
|
|
if _G.love and _G.love._version_minor > 8 then
|
|
return require(ROOT .. 'backend.love')
|
|
else
|
|
return require(ROOT .. 'backend.ffisdl')
|
|
end
|