/***************************************************************\
| |\  /|                                                We Put  |
| | >< Hypercosm     hc_getting_started_resources.js    3d      |
| |/  \|                                                To Work |
|***************************************************************|
|                                                               |
|        This file defines the runtime resources (textures      |
|        and sounds) that are used by SketchUp applets.         |
|                                                               |
|***************************************************************|
|                Copyright (c) 2007 Hypercosm, LLC.             |
\***************************************************************/


function getCursorResources(resourcePath) {
  return [
    'orbit_cursor.png, ' + resourcePath + '/cursors/orbit_cursor.png',
    'pan_cursor.png, ' + resourcePath + '/cursors/pan_cursor.png',
    'zoom_cursor.png, ' + resourcePath + '/cursors/zoom_cursor.png', 
    'tape_measure_cursor.png, ' + resourcePath + '/cursors/tape_measure_cursor.png'
  ];
}    // getCursorResources


function getGettingStartedResources(resourcePath) {
  return getTransparencyResources(resourcePath).concat(
    getMarkerResources(resourcePath).concat(
    getCursorResources(resourcePath)));
}	// getGettingStartedResources
