@camoto/gamemusic
Version:
Read and write music files used by DOS games
28 lines (26 loc) • 1.39 kB
JavaScript
/*
* File format aggregator.
*
* Copyright (C) 2010-2021 Adam Nielsen <malvineous@shikadi.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
export { default as ins_sbi_creativelabs } from './ins-sbi-creativelabs.js';
export { default as mus_dro_dosbox_v1 } from './mus-dro-dosbox-v1.js';
export { default as mus_imf_idsoftware_nukem2 } from './mus-imf-idsoftware-nukem2.js';
export { default as mus_imf_idsoftware_type0 } from './mus-imf-idsoftware-type0.js';
export { default as mus_imf_idsoftware_type1 } from './mus-imf-idsoftware-type1.js';
export { default as mus_mid_type1 } from './mus-mid-type1.js';
export { default as mus_wlf_idsoftware_type0 } from './mus-wlf-idsoftware-type0.js';
export { default as mus_wlf_idsoftware_type1 } from './mus-wlf-idsoftware-type1.js';