/*
 * Get the InterfaceSpec object being used for this world
 */

static VALUE world_get_spec(VALUE self)
{
	IrmoWorld *world = unwrap_world(self);

	return wrap_ifspec(irmo_world_get_spec(world));
}