1 /** 2 * This file is part of the Web Enabled Audio and Sound Enhancement Library (aka the Weasel audio library) Copyright 2011 - 2013 Warren Willmey. It is covered by the GNU General Public License version 3 as published by the Free Software Foundation, you should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. 3 */ 4 5 if( undefined == window.weasel ) window.weasel = {}; 6 7 // --------------------------------------------------------------------------- 8 /** Object containing constants that a DOC Soundtracker 2.2 module requires, in 9 * addition to those defined in FormatUltimateSoundTracker121 & FormatDOCSoundTracker9. 10 * 11 * @constructor 12 * @const 13 */ 14 weasel.FormatDOCSoundTracker22 = 15 { 16 /** The supported effects in a DOC Soundtracker 2.2 module in addition to those in DOC Soundtracker 9. 17 * 18 * @const 19 * @enum {int} 20 */ 21 Effects: { 22 SequencePositionJump: 11 23 , PatternBreak: 13 24 } 25 };