2021-10-23 13:08:39 +03:00

22 lines
311 B
Lua

-- Copyright (c) 2021 Maxim Tuprikov <insality@gmail.com>. This code is licensed under MIT license
--- Druid settings file
-- @module settings
-- @local
local M = {}
M.default_style = nil
function M.get_text(name, ...)
return "[Druid]: locales not inited"
end
function M.play_sound(name)
end
return M