racing/init.lua

16 lines
210 B
Lua
Raw Normal View History

2019-07-16 22:54:15 -07:00
2019-07-16 23:27:22 -07:00
racing = {
-- racing.data[playername] = {}
data = {}
}
2019-07-16 22:54:15 -07:00
local MP = minetest.get_modpath("racing")
dofile(MP.."/api.lua")
2019-07-16 23:27:22 -07:00
dofile(MP.."/storage.lua")
dofile(MP.."/chatcommands.lua")
dofile(MP.."/hud.lua")
2019-07-16 22:54:15 -07:00