aboutsummaryrefslogtreecommitdiffstats
path: root/src/s-ol.cpp
blob: 35023db8562f9a31f0c7f20fce7efc3f7a020125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "s-ol.hpp"

Plugin *plugin;

void init(rack::Plugin *p) {
  plugin = p;

  p->slug = TOSTRING(SLUG);
  p->version = TOSTRING(VERSION);
  p->website = "https://github.com/s-ol/vcvmods";
  p->manual = "https://github.com/s-ol/vcvmods";

  p->addModel(modelCircleVCO);
  p->addModel(modelWrapComp);
  p->addModel(modelModulo);
}