Никита Круглицкий a6c89e2f21 update
2025-05-11 08:18:33 +06:00

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