mirror of
https://github.com/Insality/druid
synced 2025-06-27 10:27:48 +02:00
21 lines
276 B
Lua
21 lines
276 B
Lua
--- Druid settings file
|
|
-- @module settings
|
|
-- @local
|
|
|
|
local default_style = require("druid.styles.default.style")
|
|
|
|
local M = {}
|
|
|
|
M.default_style = default_style
|
|
|
|
function M.get_text(name)
|
|
return "[Druid]: locales not inited"
|
|
end
|
|
|
|
|
|
function M.play_sound(name)
|
|
end
|
|
|
|
|
|
return M
|