mirror of
https://github.com/sirrobzeroone/elepower.git
synced 2024-11-04 22:33:48 +01:00
12 lines
318 B
Lua
12 lines
318 B
Lua
-- An Elepower Mod
|
|
-- Copyright 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
|
|
|
|
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
elesolar = rawget(_G, "elesolar") or {}
|
|
elesolar.modpath = modpath
|
|
|
|
dofile(modpath.."/generator.lua")
|
|
dofile(modpath.."/register.lua")
|
|
dofile(modpath.."/crafting.lua")
|