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