Move main process into javascript

This commit is contained in:
2024-03-15 11:21:36 -05:00
parent 32b0cc7377
commit 088dd4d4fd
20 changed files with 94 additions and 397 deletions

View File

@@ -53,10 +53,6 @@ actor.delay.doc = `Call 'fn' after 'seconds' with 'this' set to the actor.`;
actor.padawans = [];
global.app = Object.create(actor);
app.die = function()
{
Game.quit();
}
app.die = function() { os.quit(); }
return {actor, app};