Move druid settings inside system folder

This commit is contained in:
Insality
2020-01-30 01:45:25 +03:00
parent 513a4c141b
commit 0542ec4e69
5 changed files with 9 additions and 9 deletions

27
druid/system/settings.lua Normal file
View File

@@ -0,0 +1,27 @@
--- Druid settings file
-- @module settings
local M = {}
M.is_debug = false
function M.get_text(name)
-- override to get text for localized text
return "[Druid]: locales not inited"
end
function M.play_sound(name)
-- override to play sound with name
end
function M.log(...)
if M.is_debug then
print("[Druid]: ", ...)
end
end
return M