gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

serverPlugin.cpp (229B)


      1 // ReSharper disable once CppUnusedIncludeDirective
      2 #include "client/plugin.h"
      3 
      4 #include "mqLib/device.h"
      5 
      6 synthLib::Device* createBridgeDevice(const synthLib::DeviceCreateParams& _params)
      7 {
      8 	return new mqLib::Device(_params);
      9 }