| -- src/ReplicatedStorage/Shared/WireLogicConfig.lua | |
| local WireLogicConfig = { | |
| MaxWireLength = 50, -- Maximum distance between two connected nodes | |
| -- Defining the kinds of components available | |
| ComponentTypes = { | |
| Source = {"Button", "Lever", "PressurePlate"}, | |
| Logic = {"AND", "OR", "NOT", "Delay", "Timer"}, | |
| Target = {"Door", "Sawmill", "Conveyor", "Light"} | |
| } | |
| } | |
| return WireLogicConfig | |