mirror of
https://gitlab.com/4w/mtimer.git
synced 2024-11-24 16:23:44 +01:00
21 lines
599 B
Lua
21 lines
599 B
Lua
local modpath = minetest.get_modpath('mtimer')..DIR_DELIM
|
|
local syspath = modpath..'system'..DIR_DELIM
|
|
|
|
|
|
mtimer = {
|
|
translator = minetest.get_translator('mtimer'),
|
|
show_formspec = {},
|
|
meta = {
|
|
visible = { key = 'mtimer:visible', default = 'true' },
|
|
position = { key = 'mtimer:position', default = 'bl' },
|
|
color = { key = 'mtimer:color', default = '#ffffffFF' },
|
|
}
|
|
}
|
|
|
|
|
|
dofile(syspath..'chat_command.lua')
|
|
dofile(syspath..'formspec_creation.lua')
|
|
dofile(syspath..'timer_update.lua')
|
|
dofile(syspath..'on_receive_fields.lua')
|
|
dofile(syspath..'on_joinplayer.lua')
|