Replace event with event library

This commit is contained in:
Insality
2024-11-20 23:52:48 +02:00
parent 6552ea5cac
commit c00fb3590c
39 changed files with 324 additions and 364 deletions

View File

@@ -0,0 +1,12 @@
local fps_panel = require("druid.widget.fps_panel.fps_panel")
---@class widget.example_fps_panel: druid.widget
local M = {}
function M:init()
self.fps_panel = self.druid:new_widget(fps_panel, "fps_panel")
end
return M