mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 03:25:23 +09:00
17 lines
299 B
Lua
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
|