mirror of
https://github.com/Xevion/project-cybersyn.git
synced 2025-12-14 22:12:38 -06:00
merged gui
This commit is contained in:
23
cybersyn/prototypes/util.lua
Normal file
23
cybersyn/prototypes/util.lua
Normal file
@@ -0,0 +1,23 @@
|
||||
local util = {}
|
||||
|
||||
local data_util = require("__flib__.data-util")
|
||||
|
||||
for key, value in pairs(require("__core__.lualib.util")) do
|
||||
util[key] = value
|
||||
end
|
||||
|
||||
util.paths = {
|
||||
nav_icons = "__LtnManager__/graphics/gui/frame-action-icons.png",
|
||||
shortcut_icons = "__LtnManager__/graphics/shortcut/ltn-manager-shortcut.png",
|
||||
}
|
||||
|
||||
util.empty_checkmark = {
|
||||
filename = data_util.empty_image,
|
||||
priority = "very-low",
|
||||
width = 1,
|
||||
height = 1,
|
||||
frame_count = 1,
|
||||
scale = 8,
|
||||
}
|
||||
|
||||
return util
|
||||
Reference in New Issue
Block a user