mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-02-21 12:29:04 -06:00
14 lines
267 B
Plaintext
14 lines
267 B
Plaintext
local item = {
|
|
Type = "DashboardItemDate",
|
|
Identifier = "Date",
|
|
GuiName = "Date"
|
|
}
|
|
|
|
asset.onInitialize(function()
|
|
openspace.dashboard.addDashboardItem(item)
|
|
end)
|
|
|
|
asset.onDeinitialize(function()
|
|
openspace.dashboard.removeDashboardItem(item.Identifier)
|
|
end)
|