(config = {})
| 5 | } |
| 6 | |
| 7 | export const getEngine = (config = {}) => { |
| 8 | return new LuaFactory().createEngine({ |
| 9 | injectObjects: true, |
| 10 | ...config, |
| 11 | }) |
| 12 | } |
| 13 | |
| 14 | // Used to make the event loop cycle |
| 15 | export const tick = () => { |
no test coverage detected