Files
factorio-scenario-ExpCluster/exp_scenario/module/commands/debug.lua
T
2026-06-29 01:14:39 +01:00

11 lines
311 B
Lua

--[[-- Commands - Debug
Adds a command that opens the debug frame
]]
local DebugView = require("modules/exp_scenario/gui/debug/main_view")
local Commands = require("modules/exp_commands")
--- Opens the debug gui.
Commands.new("debug", { "exp-commands_debug.description" })
:register(DebugView.open_debug)