Scene *scene = load_scene("scenefile.3ds");

/* that's it, really...
 * Then in the drawing loop (display/idle handler) call...
 */
scene->render();

/* also, before calling load_scene, you can set the data file path
 * which the loader uses to find textures, like this...
 */
set_scene_data_path("foo/data_dir");