// Clone by Colm Fitzpatrick of:
// "New World" by Colm Fitzpatrick
// https://ancientbrain.com/world.php?world=0825983945
// Please leave this clone trail here.
AB.world.newRun = function()
{
// Code for initial graphics drawing of objects.
// Canvas setup:
// ABWorld.init ( arguments );
// To draw on canvas:
// var ctx = ABWorld.getContext ( type ); // type = "2d" or "webgl"
};
AB.world.nextStep = function()
{
// Code for graphics re-drawing of objects.
// To draw on canvas, see ABWorld.getContext as above.
};
AB.world.endRun = function()
{
};