2019-07-07 07:22:47 +08:00
|
|
|
// http://www.synthfont.com/Tutorial6.html
|
|
|
|
// a bank can hold many (128) presets
|
|
|
|
// bank 128 is reserved for percussion
|
2018-02-27 08:25:20 +08:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Preset.h"
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
typedef std::multimap<int, Preset> BanksToPresets;
|