2012-03-28 00:38:20 +03:00
|
|
|
--
|
|
|
|
-- Minimal Development Test
|
|
|
|
-- Mod: test
|
|
|
|
--
|
|
|
|
|
2019-07-02 03:43:46 +01:00
|
|
|
|
2012-03-28 00:38:20 +03:00
|
|
|
-- Try out PseudoRandom
|
|
|
|
pseudo = PseudoRandom(13)
|
|
|
|
assert(pseudo:next() == 22290)
|
|
|
|
assert(pseudo:next() == 13854)
|
|
|
|
|
2019-08-10 17:28:00 -04:00
|
|
|
local modpath = minetest.get_modpath("test")
|
|
|
|
dofile(modpath .. "/player.lua")
|
|
|
|
dofile(modpath .. "/formspec.lua")
|
|
|
|
dofile(modpath .. "/crafting.lua")
|