You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- import { getSdkBundlePath } from '../../app/functions';
-
- /**
- * Returns the location of the sounds. On iOS it's the location of the SDK
- * bundle on the phone. Each sound file must be added to the SDK's XCode project
- * in order to be bundled correctly.
- *
- * @returns {string}
- */
- export function getSoundsPath() {
- return getSdkBundlePath();
- }
|