12 lines
207 B
Plaintext
12 lines
207 B
Plaintext
local WireComponent = class('WireComponent')
|
|
|
|
function WireComponent:initialize()
|
|
self.wireInputs = {}
|
|
self.wireOutputs = {}
|
|
end
|
|
|
|
function WireComponent:updateWireOutputs()
|
|
end
|
|
|
|
return WireComponent
|