mirror of
https://github.com/Insality/druid.git
synced 2025-06-27 18:37:44 +02:00
16 lines
232 B
Lua
Executable File
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
|