codestudy/potential/plugin.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "plugin.hpp"

Plugin *pluginInstance;

void init(Plugin *p) {
    pluginInstance = p;

    p->addModel(modelMagSign);
    p->addModel(modelBreaker);
    p->addModel(modelPolyShuffle);

    // Any other plugin initialization may go here.
    // As an alternative, consider lazy-loading assets and lookup tables when
    // your module is created to reduce startup times of Rack.
}