mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 10:27:47 +02:00
16 lines
272 B
Lua
Executable File
16 lines
272 B
Lua
Executable File
---@class druid.system.settings
|
|
local M = {}
|
|
|
|
M.default_style = nil
|
|
|
|
---@param text_id string
|
|
---@param ... string Optional params for string.format
|
|
function M.get_text(text_id, ...)
|
|
return "[Druid]: locales not inited"
|
|
end
|
|
|
|
function M.play_sound(sound_id)
|
|
end
|
|
|
|
return M
|