mirror of
https://github.com/Insality/druid
synced 2025-06-27 02:17:52 +02:00
13 lines
265 B
Lua
13 lines
265 B
Lua
local tiling_node = require("druid.widget.tiling_node.tiling_node")
|
|
|
|
---@class examples.example_tiling_node: druid.widget
|
|
local M = {}
|
|
|
|
|
|
function M:init()
|
|
self.tiling_node = self.druid:new_widget(tiling_node, nil, nil, self:get_node("tiling_node"))
|
|
end
|
|
|
|
|
|
return M
|