forked from altalogix/SFZeroModule
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSFZero.h
35 lines (30 loc) · 1 KB
/
SFZero.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
BEGIN_JUCE_MODULE_DECLARATION
ID: SFZero
vendor: altalogix
version: 2.0.2
name: SFZero sfz player
description: SFZero .szf/.sf2 soundfont player; forked from https://github.com/stevefolta/SFZero and converted to Juce module by Leo Olivers
website: https://github.com/altalogix/SFZero
dependencies: juce_gui_basics, juce_audio_basics, juce_audio_processors
license: MIT
END_JUCE_MODULE_DECLARATION
*/
#ifndef INCLUDED_SFZERO_H
#define INCLUDED_SFZERO_H
#include "sfzero/RIFF.h"
#include "sfzero/SF2.h"
#include "sfzero/SF2Generator.h"
#include "sfzero/SF2Reader.h"
#include "sfzero/SF2Sound.h"
#include "sfzero/SF2WinTypes.h"
#include "sfzero/SFZCommon.h"
#include "sfzero/SFZDebug.h"
#include "sfzero/SFZEG.h"
#include "sfzero/SFZReader.h"
#include "sfzero/SFZRegion.h"
#include "sfzero/SFZSample.h"
#include "sfzero/SFZSound.h"
#include "sfzero/SFZSynth.h"
#include "sfzero/SFZVoice.h"
#endif // INCLUDED_SFZERO_H