mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-10-31 23:26:19 +00:00
8fac68386e
- Lint references to unknown fields of modules, excluding the keys and colours modules. This caught several silly errors in our stub files, but nothing else. - Lint on using unknown globals. This highlighted a couple of really silly mistakes. Fixes #427. - Add documentation for fs.attributes, fs.getCapacity and pocket, as they were not defined before. Co-authored-by: JackMacWindows <jackmacwindowslinux@gmail.com>
53 lines
1.7 KiB
Lua
53 lines
1.7 KiB
Lua
function write(text) end
|
|
function scroll(lines) end
|
|
function setCursorPos(x, y) end
|
|
function setCursorBlink(blink) end
|
|
function getCursorPos() end
|
|
function getSize() end
|
|
function clear() end
|
|
function clearLine() end
|
|
function setTextColour(colour) end
|
|
setTextColor = setTextColour
|
|
function setBackgroundColour(colour) end
|
|
setBackgroundColor = setBackgroundColour
|
|
function isColour() end
|
|
isColor = isColour
|
|
function getTextColour() end
|
|
getTextColor = getTextColor
|
|
function getBackgroundColour() end
|
|
getBackgroundColor = getBackgroundColour
|
|
function blit(text, text_colours, background_colours) end
|
|
function setPaletteColour(colour, ...) end
|
|
setPaletteColor = setPaletteColour
|
|
function getPaletteColour(colour, ...) end
|
|
getPaletteColor = getPaletteColour
|
|
function nativePaletteColour(colour) end
|
|
nativePaletteColor = nativePaletteColour
|
|
|
|
--- @type Redirect
|
|
local Redirect = {}
|
|
|
|
Redirect.write = write
|
|
Redirect.scroll = scroll
|
|
Redirect.setCursorPos = setCursorPos
|
|
Redirect.setCursorBlink = setCursorBlink
|
|
Redirect.getCursorPos = getCursorPos
|
|
Redirect.getSize = getSize
|
|
Redirect.clear = clear
|
|
Redirect.clearLine = clearLine
|
|
Redirect.setTextColour = setTextColour
|
|
Redirect.setTextColor = setTextColor
|
|
Redirect.setBackgroundColour = setBackgroundColour
|
|
Redirect.setBackgroundColor = setBackgroundColor
|
|
Redirect.isColour = isColour
|
|
Redirect.isColor = isColor
|
|
Redirect.getTextColour = getTextColour
|
|
Redirect.getTextColor = getTextColor
|
|
Redirect.getBackgroundColour = getBackgroundColour
|
|
Redirect.getBackgroundColor = getBackgroundColor
|
|
Redirect.blit = blit
|
|
Redirect.setPaletteColour = setPaletteColour
|
|
Redirect.setPaletteColor = setPaletteColor
|
|
Redirect.getPaletteColour = getPaletteColour
|
|
Redirect.getPaletteColor = getPaletteColor
|