/*
 * Iterate over all Objects in the world.
 *
 *   # Iterate over all objects
 *
 *   world.each { |obj| ... }
 */

static VALUE world_each(VALUE self)
{
	return world_each_base(self, NULL);
}