1
Fork 0
solar-conflux/lua/prescient-trains/common/constants.lua
2022-12-31 19:29:58 +01:00

12 lines
261 B
Lua

local M = {}
M.item_name = "dispatcher-train-stop"
M.input_item_name = M.item_name .. "-input"
-- Distance from rails for each stop type.
-- Useful if, in the future, I decide to
-- add support for cargo ships
M.stop_offsets = { [M.item_name] = 0 }
return M