From 8f8009e8afe75006b9ae97fbe9dfa1ab103e1b54 Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Wed, 4 Jun 2025 13:14:59 +0200 Subject: [PATCH] - [FIX] Updated 'library.lua' with sys.fps() and sys.clipboard(). --- vscode/library.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/vscode/library.lua b/vscode/library.lua index 72218d4..a2315cc 100644 --- a/vscode/library.lua +++ b/vscode/library.lua @@ -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 = {}