Files
factorio-scenario-ExpCluster/exp_gui/module/styles.lua
2025-01-30 00:07:07 +00:00

17 lines
299 B
Lua

--- @class ExpGui
local ExpGui = require("modules/exp_gui")
--- @class ExpGui.styles
local styles = {}
ExpGui.styles = styles
function styles.sprite(style)
style = style or {}
if not style.padding then
style.padding = -2
end
return style
end
return styles