2024-10-29 20:31:45 +02:00

16 lines
232 B
Lua
Executable File

---@class druid.system.settings
local M = {}
M.default_style = nil
---@param text_id string
---@vararg any
function M.get_text(text_id, ...)
return "[Druid]: locales not inited"
end
function M.play_sound(sound_id)
end
return M