MagicNStuff/source/addons/panku_console/modules/system_report/env.gd
2025-02-25 22:07:11 +01:00

10 lines
286 B
GDScript

var _os_report = preload("./os_report.gd").new()
var _module:PankuModule
const _HELP_execute = "Show detailed OS report"
func execute() -> String:
_module.core.notify("Please wait, this may take a while...")
_os_report.inspect()
var report = "".join(_os_report.rtl)
return report