1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-11-03 16:55:24 +01:00
Files
luanti/games/minimal/mods/test/init.lua
2019-08-03 19:36:30 +01:00

14 lines
272 B
Lua

--
-- Minimal Development Test
-- Mod: test
--
-- Try out PseudoRandom
pseudo = PseudoRandom(13)
assert(pseudo:next() == 22290)
assert(pseudo:next() == 13854)
dofile(minetest.get_modpath("test") .. "/player.lua")
dofile(minetest.get_modpath("test") .. "/formspec.lua")