13 lines
298 B
Lua
Raw Normal View History

-- Buildat: builtin/voxelworld/client_lua/module.lua
-- http://www.apache.org/licenses/LICENSE-2.0
-- Copyright 2014 Perttu Ahola <celeron55@gmail.com>
local log = buildat.Logger("voxelworld")
local M = {}
function M.init()
log:info("voxelworld.init()")
end
return M
-- vim: set noet ts=4 sw=4: