add kenney assets and start gui screen

This commit is contained in:
Insality
2019-09-25 22:10:44 +03:00
parent aaac514a3d
commit f447afb4f7
31 changed files with 970 additions and 15 deletions

12
example/kenney/lang.lua Normal file
View File

@@ -0,0 +1,12 @@
local M = {}
local data = {
main_page = "Main page",
}
function M.get_locale(lang_id)
return data[lang_id] or lang_id
end
return M