14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
local WireComponent = class('WireComponent')
|
|
|
|
function WireComponent:initialize()
|
|
if CLIENT then return end
|
|
|
|
self.wireInputs = {}
|
|
self.wireOutputs = {}
|
|
end
|
|
|
|
function WireComponent:updateWireOutputs()
|
|
end
|
|
|
|
return WireComponent
|