Files
Druid-Extension/example/examples/windows/window_confirmation/window_confirmation.gui_script
2025-11-26 09:53:42 +02:00

30 lines
546 B
Lua

local druid = require("druid.druid")
local window_confirmation = require("example.examples.windows.window_confirmation.window_confirmation")
function init(self)
self.druid = druid.new(self)
self.druid:new(window_confirmation)
end
function final(self)
self.druid:final()
end
function update(self, dt)
self.druid:update(dt)
end
function on_message(self, message_id, message, sender)
self.druid:on_message(message_id, message, sender)
end
function on_input(self, action_id, action)
return self.druid:on_input(action_id, action)
end