Added multi.compat.backwards[ver] Require this to be able to use features that were changed from that version. loops callback args are now: self,dt steps callback args are now: self,pos If requiring the backwards compat for the previous version do so after requiring all of the modules you are using.
5 lines
139 B
Lua
5 lines
139 B
Lua
package.path="?/init.lua;"..package.path
|
|
require("multi.all")
|
|
multi:benchMark(3,nil,"Results: ")
|
|
multi:mainloop() -- start the main runner
|