mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-10-27 17:19:31 +00:00
uqt.signal
This commit is contained in:
parent
82bc7268e6
commit
f6fb8ad649
11 changed files with 331 additions and 80 deletions
14
signal/init.lua
Normal file
14
signal/init.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
local signal
|
||||
|
||||
local p = ...
|
||||
if love then
|
||||
signal = require(p..".backend.love")
|
||||
elseif package.loaded["ctr"] then
|
||||
error("NYI")
|
||||
elseif package.loaded["libretro"] then
|
||||
error("NYI")
|
||||
else
|
||||
error("no backend for ubiquitousse.signal")
|
||||
end
|
||||
|
||||
return signal
|
||||
Loading…
Add table
Add a link
Reference in a new issue