content/hifi-content/Experiences/Releases/usefulUtilities/botinator/2019-03-30_22-37-48/wavs.js
2022-02-13 23:16:46 +01:00

31 lines
No EOL
794 B
JavaScript

//
//
// Botinator
// wavs.js
// Created by Milad Nazeri on 2019-03-30
// Copyright 2019 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
// Wav files to play during start and stop
//
//
var wavs = {
play: [
"./wav/play/t2_affirmative_1.wav",
"./wav/play/t2_correct_1.wav",
"./wav/play/t2_terminator_1.wav",
"./wav/play/t3_programmed_1.wav"
],
stop: [
"./wav/stop/t1_be_back_1.wav",
"./wav/stop/t2_goodbye_1.wav",
"./wav/stop/t2_hasta_la_vista_1.wav",
"./wav/stop/t3_dont_do_dat_1.wav",
"./wav/stop/t3_terminated_1.wav"
]
};
module.exports = wavs;