mirror of
https://github.com/Insality/druid
synced 2025-06-27 18:37:45 +02:00
29 lines
327 B
Lua
29 lines
327 B
Lua
--- Druid settings file
|
|
-- @module settings
|
|
-- @local
|
|
|
|
local M = {}
|
|
|
|
M.is_debug = false
|
|
M.default_style = nil
|
|
M.auto_focus_gain = true
|
|
|
|
|
|
function M.get_text(name)
|
|
return "[Druid]: locales not inited"
|
|
end
|
|
|
|
|
|
function M.play_sound(name)
|
|
end
|
|
|
|
|
|
function M.log(...)
|
|
if M.is_debug then
|
|
print("[Druid]: ", ...)
|
|
end
|
|
end
|
|
|
|
|
|
return M
|