mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 00:11:55 +07:00
16 lines
280 B
Lua
16 lines
280 B
Lua
---@class editor
|
|
local editor = {
|
|
---@type gobject
|
|
selection = nil
|
|
}
|
|
|
|
---@param self editor
|
|
---@param go gobject
|
|
function editor.select(self, go) end
|
|
|
|
---@param self editor
|
|
function editor.clear_selection(self) end
|
|
|
|
---@type editor
|
|
_G.the_editor = _G.the_editor or editor
|