mirror of
https://github.com/Insality/druid
synced 2025-06-27 18:37:45 +02:00
22 lines
328 B
Lua
Executable File
22 lines
328 B
Lua
Executable File
-- Copyright (c) 2021 Maksim 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, a, b, c, d, e, f, g)
|
|
return "[Druid]: locales not inited"
|
|
end
|
|
|
|
|
|
function M.play_sound(name)
|
|
end
|
|
|
|
|
|
return M
|