mirror of
https://github.com/Reuh/ubiquitousse.git
synced 2025-12-15 21:19:08 +00:00
stuff
This commit is contained in:
parent
08afbe1d6d
commit
b55c6b0dfd
8 changed files with 56 additions and 4 deletions
|
|
@ -51,10 +51,19 @@ end
|
|||
uqt.backend = "ctrulua"
|
||||
|
||||
-- uqt.event: TODO
|
||||
if uqt.event then
|
||||
error("uqt.event: NYI")
|
||||
end
|
||||
|
||||
-- uqt.draw: TODO
|
||||
if uqt.draw then
|
||||
error("uqt.draw: NYI")
|
||||
end
|
||||
|
||||
-- uqt.audio: TODO
|
||||
if uqt.audio then
|
||||
error("uqt.audio: NYI")
|
||||
end
|
||||
|
||||
-- uqt.time
|
||||
if uqt.time then
|
||||
|
|
|
|||
|
|
@ -105,6 +105,9 @@ add(uqt.draw, {
|
|||
love.graphics.setFont(defaultFont)
|
||||
love.graphics.print(text, x, y)
|
||||
end,
|
||||
point = function(x, y, ...)
|
||||
love.graphics.points(x, y, ...)
|
||||
end,
|
||||
lineWidth = function(width)
|
||||
love.graphics.setLineWidth(width)
|
||||
end,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue