- [FIX] Updated 'library.lua' with sys.fps() and sys.clipboard().

This commit is contained in:
2025-06-04 13:14:59 +02:00
parent 150cb9f4ff
commit 8f8009e8af

View File

@@ -351,6 +351,19 @@ function sys.dir() end
---Exit the game
function sys.quit() end
---@return number
---Gets the frames per second
function sys.fps() end
---@return string
---Gets the content of the clipboard
function sys.clipboard() end
---@param value string
---Sets the content of the clipboard
function sys.clipboard(value) end
---@class win
win = {}