mirror of
https://github.com/tacigar/maidroid.git
synced 2024-11-04 17:20:32 +01:00
15 lines
552 B
Lua
15 lines
552 B
Lua
------------------------------------------------------------
|
|
-- Copyright (c) 2016 tacigar. All rights reserved.
|
|
-- https://github.com/tacigar/maidroid
|
|
------------------------------------------------------------
|
|
|
|
maidroid_core = {}
|
|
|
|
maidroid_core.modname = "maidroid_core"
|
|
maidroid_core.modpath = minetest.get_modpath(maidroid_core.modname)
|
|
|
|
dofile(maidroid_core.modpath .. "/cores/_aux.lua")
|
|
dofile(maidroid_core.modpath .. "/cores/empty.lua")
|
|
dofile(maidroid_core.modpath .. "/cores/basic.lua")
|
|
dofile(maidroid_core.modpath .. "/cores/farming.lua")
|