mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-01 07:36: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>
15 lines
487 B
Lua
15 lines
487 B
Lua
function getSides() end
|
|
function setOutput(side, on) end
|
|
function getOutput(side) end
|
|
function getInput(side) end
|
|
function setBundledOutput(side, output) end
|
|
function getBundledOutput(side) end
|
|
function getBundledInput(side) end
|
|
function testBundledInput(side, mask) end
|
|
function setAnalogOutput(side, value) end
|
|
setAnalogueOutput = setAnalogOutput
|
|
function getAnalogOutput(sid) end
|
|
getAnalogueOutput = getAnalogOutput
|
|
function getAnalogInput(side) end
|
|
getAnalogueInput = getAnalogInput
|