2
0
Fork 0
OPL/Source/InstrumentLoader.h

13 lines
322 B
C++

#pragma once
#include "PluginProcessor.h"
// Just specifies the interfaces for instrument loaders.
class InstrumentLoader
{
public:
virtual void loadInstrumentData(int n, const unsigned char* data, AdlibBlasterAudioProcessor *proc) = 0;
virtual String getExtension() = 0;
virtual ~InstrumentLoader() = default;
};